RE: [PATCH] [media] v4l: soc-camera: add enum-frame-size ioctl

2011-01-10 Thread Guennadi Liakhovetski
On Sun, 9 Jan 2011, Qing Xu wrote: On Mon, 10 Jan 2011, Qing Xu wrote: On Fri, 7 Jan 2011, Guennadi Liakhovetski wrote: On Fri, 7 Jan 2011, Qing Xu wrote: pass VIDIOC_ENUM_FRAMESIZES down to sub device drivers. So far no special handling in soc-camera core. Hm, no, guess

Re: [linux-dvb] cx23885 errors on Tevii S470

2011-01-10 Thread Hans Houwaard
Maybe try the build instructions here: http://www.linuxtv.org/wiki/index.php/TeVii_S470 The driver clearly does not work properly, maybe with a different build it will work. Hans - Oorspronkelijk bericht - Van: Josu Lazkano josu.lazk...@gmail.com Aan: linux-...@linuxtv.org Verzonden:

[PATCH 01/16] stv090x: make sleep/wakeup specific to the demod path

2011-01-10 Thread Oliver Endriss
From: Andreas Regel andreas.re...@gmx.de The STV0900 features two demodulator paths in one chip. Thus it is not possible to use the generic power off function of the chip when sending one of them to standby. The other path will stop working in that case. The sleep function now switches off

[PATCH 04/16] ngene: Fixes for TS input over I2S

2011-01-10 Thread Oliver Endriss
Fix TS input over I2S. Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/media/dvb/ngene/ngene-core.c |4 ++-- drivers/media/dvb/ngene/ngene-dvb.c |5 - 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/drivers/media/dvb/ngene/ngene-core.c

[PATCH 06/16] ngene: Clean-up driver initialisation (part 1)

2011-01-10 Thread Oliver Endriss
If tuner initialisation failed, the frontend node was not removed. When the frontend was opened, a kernel oops occurred... This is the first step to improve error handling during initialisation. Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/media/dvb/ngene/ngene-cards.c |1 +

[PATCH 08/16] ngene: Shutdown workaround

2011-01-10 Thread Oliver Endriss
From: Ralph Metzler r...@metzlerbros.de Implement shutdown workaround for some chipsets. Signed-off-by: Ralph Metzler r...@metzlerbros.de Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/media/dvb/ngene/ngene-cards.c |1 + drivers/media/dvb/ngene/ngene-core.c | 37

[PATCH 09/16] ngene: Add net device

2011-01-10 Thread Oliver Endriss
From: Ralph Metzler r...@metzlerbros.de Add dvb net device. Note that the physical address must be setup manually. Signed-off-by: Ralph Metzler r...@metzlerbros.de Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/media/dvb/ngene/ngene-core.c |3 +++ drivers/media/dvb/ngene/ngene.h

[PATCH 10/16] ngene: Enable CI for Mystique SaTiX-S2 Dual (v2)

2011-01-10 Thread Oliver Endriss
Enable CI for Mystique SaTiX-S2 Dual (v2). Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/media/dvb/ngene/ngene-cards.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/media/dvb/ngene/ngene-cards.c b/drivers/media/dvb/ngene/ngene-cards.c index

[PATCH 15/16] ngene: Improved channel initialisation and release

2011-01-10 Thread Oliver Endriss
Refactored code for channel initialisation and release: - Do not create device nodes which are not required. - Better error handling. Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/media/dvb/ngene/ngene-core.c | 109 ++ drivers/media/dvb/ngene/ngene.h

[PATCH 12/16] ngene: Fix copy-paste error

2011-01-10 Thread Oliver Endriss
Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/media/dvb/ngene/ngene-core.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/media/dvb/ngene/ngene-core.c b/drivers/media/dvb/ngene/ngene-core.c index b370bd2..02118f2 100644 ---

[PATCH 14/16] stv090x: Fix losing lock in dual DVB-S2 mode

2011-01-10 Thread Oliver Endriss
Do not clear registers ACLC/BCLC in DVB-S2 mode for Cut = 20. Otherwise, the demod could lose the lock periodically. Verified with cineS2 and Duoflex. Signed-off-by: Oliver Endriss o.endr...@gmx.de Signed-off-by: Manu Abraham m...@linuxtv.org --- drivers/media/dvb/frontends/stv090x.c | 10

[PATCH 13/16] stv090x: Fixed typos in register macros

2011-01-10 Thread Oliver Endriss
Fixed typos in register macros. Signed-off-by: Oliver Endriss o.endr...@gmx.de Signed-off-by: Manu Abraham m...@linuxtv.org --- drivers/media/dvb/frontends/stv090x_reg.h | 16 1 files changed, 8 insertions(+), 8 deletions(-) diff --git

[PATCH 02/16] stv090x: Optional external lock routine

2011-01-10 Thread Oliver Endriss
Card driver may supply its own lock routine now. Signed-off-by: Oliver Endriss o.endr...@gmx.de Signed-off-by: Manu Abraham m...@linuxtv.org --- drivers/media/dvb/frontends/stv090x.c | 21 - drivers/media/dvb/frontends/stv090x.h |1 + 2 files changed, 17 insertions(+),

[PATCH 03/16] ngene: Firmware 18 support

2011-01-10 Thread Oliver Endriss
Small modifications for firmware 18. Signed-off-by: Oliver Endriss o.endr...@gmx.de --- drivers/media/dvb/ngene/ngene-core.c | 10 -- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/drivers/media/dvb/ngene/ngene-core.c b/drivers/media/dvb/ngene/ngene-core.c index

[PATCH 07/16] ngene: CXD2099AR Common Interface driver

2011-01-10 Thread Oliver Endriss
From: Ralph Metzler r...@metzlerbros.de Driver for the Common Interface Controller CXD2099AR. Supports the CI of the cineS2 DVB-S2. For now, data is passed through '/dev/dvb/adapterX/sec0': - Encrypted data must be written to 'sec0'. - Decrypted data can be read from 'sec0'. - Setup the CAM

[PATCH 11/16] get_dvb_firmware: ngene_18.fw added

2011-01-10 Thread Oliver Endriss
Add download link for ngene firmware rev 18. Signed-off-by: Oliver Endriss o.endr...@gmx.de --- Documentation/dvb/get_dvb_firmware |8 +++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/Documentation/dvb/get_dvb_firmware b/Documentation/dvb/get_dvb_firmware index

Re: RFC: Move the deprecated et61x251 and sn9c102 to staging

2011-01-10 Thread Hans de Goede
Hi, On 01/10/2011 02:33 AM, Mauro Carvalho Chehab wrote: Em 09-01-2011 10:02, Hans de Goede escreveu: snip I've managed to make some time to also sort out the sn9c1xx usb ids situation. I've just send a pull request which includes patches cleaning things up. After this there are only 5

[PATCH v13 4/8] davinci vpbe: VENC( Video Encoder) implementation

2011-01-10 Thread Manjunath Hadli
This patch adds the VENC or the Video encoder, which is responsible for the blending of all source planes and timing generation for Video modes like NTSC, PAL and other digital outputs. the VENC implementation currently supports COMPOSITE and COMPONENT outputs and NTSC and PAL resolutions through

[PATCH v13 5/8] davinci vpbe: platform specific additions

2011-01-10 Thread Manjunath Hadli
This patch implements the overall device creation for the Video display driver. Signed-off-by: Manjunath Hadli manjunath.ha...@ti.com Acked-by: Muralidharan Karicheri m-kariche...@ti.com Acked-by: Hans Verkuil hverk...@xs4all.nl --- arch/arm/mach-davinci/dm644x.c | 168

[PATCH v13 6/8] davinci vpbe: board specific additions

2011-01-10 Thread Manjunath Hadli
This patch implements tables for display timings,outputs and other board related functionalities. Signed-off-by: Manjunath Hadli manjunath.ha...@ti.com Acked-by: Muralidharan Karicheri m-kariche...@ti.com Acked-by: Hans Verkuil hverk...@xs4all.nl --- arch/arm/mach-davinci/board-dm644x-evm.c |

[PATCH v13 7/8] davinci vpbe: Build infrastructure for VPBE driver

2011-01-10 Thread Manjunath Hadli
This patch adds the build infra-structure for Davinci VPBE dislay driver. Signed-off-by: Manjunath Hadli manjunath.ha...@ti.com Acked-by: Muralidharan Karicheri m-kariche...@ti.com Acked-by: Hans Verkuil hverk...@xs4all.nl --- drivers/media/video/davinci/Kconfig | 22 ++

[PATCH v13 8/8] davinci vpbe: Readme text for Dm6446 vpbe

2011-01-10 Thread Manjunath Hadli
Please refer to this file for detailed documentation of davinci vpbe v4l2 driver. Signed-off-by: Manjunath Hadli manjunath.ha...@ti.com Acked-by: Muralidharan Karicheri m-kariche...@ti.com Acked-by: Hans Verkuil hverk...@xs4all.nl --- Documentation/video4linux/README.davinci-vpbe | 93

Re: [PATCH] [media] v4l: soc-camera: add enum-frame-size ioctl

2011-01-10 Thread Laurent Pinchart
Hi Guennadi, On Monday 10 January 2011 09:20:05 Guennadi Liakhovetski wrote: On Sun, 9 Jan 2011, Qing Xu wrote: On Fri, 7 Jan 2011, Guennadi Liakhovetski wrote: On Fri, 7 Jan 2011, Qing Xu wrote: pass VIDIOC_ENUM_FRAMESIZES down to sub device drivers. So far no special handling in

Re: RFC: Move the deprecated et61x251 and sn9c102 to staging

2011-01-10 Thread Mauro Carvalho Chehab
Em 10-01-2011 08:28, Hans de Goede escreveu: Hi, On 01/10/2011 02:33 AM, Mauro Carvalho Chehab wrote: Em 09-01-2011 10:02, Hans de Goede escreveu: snip I've managed to make some time to also sort out the sn9c1xx usb ids situation. I've just send a pull request which includes patches

[GIT PULL FOR 2.6.38] Control framework fixes

2011-01-10 Thread Laurent Pinchart
Hi Mauro, The following changes since commit 0a97a683049d83deaf636d18316358065417d87b: [media] cpia2: convert .ioctl to .unlocked_ioctl (2011-01-06 11:34:41 -0200) are available in the git repository at: git://linuxtv.org/pinchartl/media.git ctrl-framework Could you please include them in

Re: [RFCv2 PATCH 0/5] Use control framework in cafe_ccic and s_config removal

2011-01-10 Thread Hans Verkuil
Hi, Another reason why s_config is a bad idea. Thanks a lot for working on this. I had a quick look and don't have any objections. This has been extensively tested on my humble OLPC laptop (and it took me 4-5 hours just to get the damn thing up and running with these drivers). In

Re: [GIT PULL FOR 2.6.38] Control framework fixes

2011-01-10 Thread Hans Verkuil
Hi Mauro, The following changes since commit 0a97a683049d83deaf636d18316358065417d87b: [media] cpia2: convert .ioctl to .unlocked_ioctl (2011-01-06 11:34:41 -0200) are available in the git repository at: git://linuxtv.org/pinchartl/media.git ctrl-framework Could you please include

Re: Debug code in HG repositories

2011-01-10 Thread Mauro Carvalho Chehab
Em 07-01-2011 19:06, Hans Verkuil escreveu: On Friday, January 07, 2011 21:13:31 Devin Heitmueller wrote: On Fri, Jan 7, 2011 at 2:53 PM, Oliver Endriss o.endr...@gmx.de wrote: Hi guys, are you aware that there is a lot of '#if 0' code in the HG repositories which is not in GIT? When

Re: [PATCH v13 5/8] davinci vpbe: platform specific additions

2011-01-10 Thread Sergei Shtylyov
Hello. On 10-01-2011 13:23, Manjunath Hadli wrote: This patch implements the overall device creation for the Video display driver. Signed-off-by: Manjunath Hadlimanjunath.ha...@ti.com Acked-by: Muralidharan Karicherim-kariche...@ti.com Acked-by: Hans Verkuilhverk...@xs4all.nl [...] diff

Re: Debug code in HG repositories

2011-01-10 Thread Mauro Carvalho Chehab
Em 07-01-2011 21:42, Theodore Kilgore escreveu: Have you tried Mauro's media_build tree? I had to use it today to test a driver from git on a 2.6.35 kernel. Works quite nicely. Perhaps we should promote this more. Probably a good idea. I have been too busy to know about it, myself. And

RE: [PATCH v13 5/8] davinci vpbe: platform specific additions

2011-01-10 Thread Nori, Sekhar
On Mon, Jan 10, 2011 at 16:58:41, Sergei Shtylyov wrote: + +#define OSD_REG_SIZE 0x01ff +#define VENC_REG_SIZE 0x017f Well, actually that's not the size but limit -- sizes should be 0x200 and 0x180 respectively... In most resource

Re: Debug code in HG repositories

2011-01-10 Thread Mauro Carvalho Chehab
Em 07-01-2011 21:56, Oliver Endriss escreveu: On Friday 07 January 2011 22:06:30 Hans Verkuil wrote: On Friday, January 07, 2011 21:13:31 Devin Heitmueller wrote: On Fri, Jan 7, 2011 at 2:53 PM, Oliver Endriss o.endr...@gmx.de wrote: Hi guys, are you aware that there is a lot of '#if 0' code

Re: Enable IR on hdpvr

2011-01-10 Thread Andy Walls
On Mon, 2011-01-10 at 01:05 -0500, Jarod Wilson wrote: On Jan 9, 2011, at 7:36 PM, Jason Gauthier wrote: Janne, I've heard many success stories w/the hdpvr IR lately, and almost no reports of lockups, so I'm thinking a firmware update may have helped out here, and thus, maybe its time we

Maybe I'll hack on lirc_zilog.c this coming weekend (Re: Enable IR on hdpvr)

2011-01-10 Thread Andy Walls
On Mon, 2011-01-10 at 01:05 -0500, Jarod Wilson wrote: On Jan 9, 2011, at 7:36 PM, Jason Gauthier wrote: There's a bit more to it than just the one line change. Here's the patch we're carrying in the Fedora kernels to enable it:

Re: Debug code in HG repositories

2011-01-10 Thread Mauro Carvalho Chehab
Em 10-01-2011 10:04, Mauro Carvalho Chehab escreveu: Em 07-01-2011 21:56, Oliver Endriss escreveu: On Friday 07 January 2011 22:06:30 Hans Verkuil wrote: On Friday, January 07, 2011 21:13:31 Devin Heitmueller wrote: On Fri, Jan 7, 2011 at 2:53 PM, Oliver Endriss o.endr...@gmx.de wrote: Hi

Re: Debug code in HG repositories

2011-01-10 Thread Mauro Carvalho Chehab
Em 07-01-2011 23:02, Vincent McIntyre escreveu: On 1/8/11, Hans Verkuil hverk...@xs4all.nl wrote: Have you tried Mauro's media_build tree? I had to use it today to test a driver from git on a 2.6.35 kernel. Works quite nicely. Perhaps we should promote this more. I could add backwards

Re: Enable IR on hdpvr

2011-01-10 Thread Janne Grunau
On Mon, Jan 10, 2011 at 01:05:10AM -0500, Jarod Wilson wrote: There's a bit more to it than just the one line change. Here's the patch we're carrying in the Fedora kernels to enable it: http://wilsonet.com/jarod/lirc_misc/hdpvr-ir/hdpvr-ir-enable.patch Janne, I've heard many success

Re: [REGRESSION: wm8775, ivtv] Please revert commit fcb9757333df37cf4a7feccef7ef6f5300643864

2011-01-10 Thread Andy Walls
On Sat, 2011-01-08 at 19:45 +0100, Lawrence Rust wrote: On Sat, 2011-01-08 at 09:22 -0500, Andy Walls wrote: Thanks for the info on the PVR-150. It largely confirmed what I had surmised - that the two cards disagree about serial audio data format. Before my patch, the wm8775 was programmed

[RFC V9 7/7] drivers:media:radio: Update Kconfig and Makefile for wl128x FM driver.

2011-01-10 Thread manjunatha_halli
From: Manjunatha Halli manjunatha_ha...@ti.com Signed-off-by: Manjunatha Halli manjunatha_ha...@ti.com --- drivers/media/radio/Kconfig |3 +++ drivers/media/radio/Makefile |1 + 2 files changed, 4 insertions(+), 0 deletions(-) diff --git a/drivers/media/radio/Kconfig

[RFC V9 0/7] FM V4L2 drivers for WL128x

2011-01-10 Thread manjunatha_halli
From: Manjunatha Halli manjunatha_ha...@ti.com Mauro and the list, This is the v9 version of the TI WL128x FM V4L2 drivers patchset. This introduces wl128x folder under the drivers/media/radio which cater to FM core on Texas Instrument's WL128x (also compatible with WL127x) WiLink chipsets.

[RFC V9 2/7] drivers:media:radio: wl128x: FM Driver V4L2 sources

2011-01-10 Thread manjunatha_halli
From: Manjunatha Halli manjunatha_ha...@ti.com This module interfaces V4L2 subsystem and FM common module. It registers itself with V4L2 as Radio module. Signed-off-by: Manjunatha Halli manjunatha_ha...@ti.com --- drivers/media/radio/wl128x/fmdrv_v4l2.c | 594 +++

[RFC V9 4/7] drivers:media:radio: wl128x: FM driver RX sources

2011-01-10 Thread manjunatha_halli
From: Manjunatha Halli manjunatha_ha...@ti.com This has implementation for FM RX functionality. It communicates with FM V4l2 module and FM common module Signed-off-by: Manjunatha Halli manjunatha_ha...@ti.com --- drivers/media/radio/wl128x/fmdrv_rx.c | 876 +

[RFC V9 5/7] drivers:media:radio: wl128x: FM driver TX sources

2011-01-10 Thread manjunatha_halli
From: Manjunatha Halli manjunatha_ha...@ti.com This has implementation for FM TX functionality. It communicates with FM V4l2 module and FM common module. Signed-off-by: Manjunatha Halli manjunatha_ha...@ti.com --- drivers/media/radio/wl128x/fmdrv_tx.c | 433 +

[RFC V9 6/7] drivers:media:radio: wl128x: Kconfig Makefile for wl128x driver

2011-01-10 Thread manjunatha_halli
From: Manjunatha Halli manjunatha_ha...@ti.com Signed-off-by: Manjunatha Halli manjunatha_ha...@ti.com --- drivers/media/radio/wl128x/Kconfig | 17 + drivers/media/radio/wl128x/Makefile |6 ++ 2 files changed, 23 insertions(+), 0 deletions(-) create mode 100644

[RFC V9 1/7] drivers:media:radio: wl128x: fmdrv common header file

2011-01-10 Thread manjunatha_halli
From: Manjunatha Halli manjunatha_ha...@ti.com These are common headers used in FM submodules (FM V4L2, FM common, FM Rx,and FM TX). Signed-off-by: Manjunatha Halli manjunatha_ha...@ti.com --- drivers/media/radio/wl128x/fmdrv.h | 242 1 files changed, 242

RE: [PATCH v13 5/8] davinci vpbe: platform specific additions

2011-01-10 Thread Hadli, Manjunath
On Mon, Jan 10, 2011 at 17:25:33, Nori, Sekhar wrote: On Mon, Jan 10, 2011 at 16:58:41, Sergei Shtylyov wrote: + +#define OSD_REG_SIZE 0x01ff +#define VENC_REG_SIZE0x017f Well, actually that's not the size but limit -- sizes

RE: [PATCH v13 5/8] davinci vpbe: platform specific additions

2011-01-10 Thread Nori, Sekhar
On Mon, Jan 10, 2011 at 18:21:34, Hadli, Manjunath wrote: On Mon, Jan 10, 2011 at 17:25:33, Nori, Sekhar wrote: On Mon, Jan 10, 2011 at 16:58:41, Sergei Shtylyov wrote: + +#define OSD_REG_SIZE 0x01ff +#define VENC_REG_SIZE 0x017f

Re: difference mchehab/new_build.git to media_build.git ?

2011-01-10 Thread Mauro Carvalho Chehab
Em 09-01-2011 02:01, Vincent McIntyre escreveu: There's no difference. It started out at mchehab/new_build.git, then got moved to media_build.git, but there's a symlink in place to keep from breaking things for people who originally checked it out at the old location. The move essentially

Re: [REGRESSION: wm8775, ivtv] Please revert commit fcb9757333df37cf4a7feccef7ef6f5300643864

2011-01-10 Thread Lawrence Rust
On Mon, 2011-01-10 at 07:39 -0500, Andy Walls wrote: [snip] I do see one problem with your patch at the moment: diff --git a/include/media/wm8775.c b/include/media/wm8775.c ... + sd-grp_id = WM8775_GID; /* subdev group id */ ... diff --git a/include/media/wm8775.h

Re: Debug code in HG repositories

2011-01-10 Thread Johannes Stezenbach
On Mon, Jan 10, 2011 at 09:46:40AM -0200, Mauro Carvalho Chehab wrote: Em 07-01-2011 21:42, Theodore Kilgore escreveu: Have you tried Mauro's media_build tree? I had to use it today to test a driver from git on a 2.6.35 kernel. Works quite nicely. Perhaps we should promote this more.

Re: [PATCH 03/16] ngene: Firmware 18 support

2011-01-10 Thread Bjørn Mork
Oliver Endriss o.endr...@gmx.de writes: + case 18: + size = 0; + fw_name = ngene_18.fw; + break; } if (request_firmware(fw, fw_name, dev-pci_dev-dev) 0) { @@ -1266,6 +1270,8 @@ static int ngene_load_firm(struct ngene *dev)

Re: [PATCH 07/16] ngene: CXD2099AR Common Interface driver

2011-01-10 Thread Andreas Oberritter
On 01/10/2011 10:36 AM, Oliver Endriss wrote: From: Ralph Metzler r...@metzlerbros.de Driver for the Common Interface Controller CXD2099AR. Supports the CI of the cineS2 DVB-S2. For now, data is passed through '/dev/dvb/adapterX/sec0': - Encrypted data must be written to 'sec0'. -

RE: Enable IR on hdpvr

2011-01-10 Thread Jason Gauthier
I did simply try changing: /* until i2c is working properly */ retval = 0; /* hdpvr_register_i2c_ir(dev); */ if (retval 0) so that it would register with i2c. Doing so returns a positive registration with I2C, but the lirc_zilog driver doesn't see the chip when it

Re: soc_camera Client Driver with Multiple I2C Addresses

2011-01-10 Thread Jean Delvare
On Tue, 28 Dec 2010 08:55:41 +0100 (CET), Guennadi Liakhovetski wrote: Hi Charles (linux-i2c added to cc) On Mon, 27 Dec 2010, Charles D. Krebs wrote: Guennadi, I'm developing a driver for a video receiver chip that has register banks on multiple I2C addresses on the same bus.

Re: [PATCH] DVB Satellite Channel Routing support for DVB-S

2011-01-10 Thread Thomas Schlöter
Hallo Andreas, Am 10.01.2011 um 14:09 schrieb Andreas Oberritter: Hallo Thomas, thank you for your contribution. However, I'm against applying it. On 01/10/2011 05:19 AM, Thomas Schlöter wrote: I have developed some modifications to the 2.6.37 DVB frontend code to support DVB satellite

RE: [PATCH 5/8] davinci vpbe: platform specific additions

2011-01-10 Thread Nori, Sekhar
Hi Manju, Please CC linux-arm-ker...@lists.infradead.org for mach-davinci patches. On Mon, Jan 10, 2011 at 18:57:37, Hadli, Manjunath wrote: This patch implements the overall device creation for the Video display driver. Signed-off-by: Manjunath Hadli manjunath.ha...@ti.com Acked-by:

Re: [PATCH] DVB Satellite Channel Routing support for DVB-S

2011-01-10 Thread Andreas Oberritter
On 01/10/2011 04:07 PM, Thomas Schlöter wrote: I decided this should be supported by the kernel frontend code as it is impossible to send that special DiSEqC / voltage sequence from userspace. Why do you think that's impossible? There's a userspace implementation in Enigma2. I think the

Re: [PATCH 03/16] ngene: Firmware 18 support

2011-01-10 Thread Oliver Endriss
On Monday 10 January 2011 15:00:18 Bjørn Mork wrote: Oliver Endriss o.endr...@gmx.de writes: + case 18: + size = 0; + fw_name = ngene_18.fw; + break; } if (request_firmware(fw, fw_name, dev-pci_dev-dev) 0) { @@ -1266,6 +1270,8 @@ static

Re: [PATCH 07/16] ngene: CXD2099AR Common Interface driver

2011-01-10 Thread Oliver Endriss
On Monday 10 January 2011 15:05:34 Andreas Oberritter wrote: On 01/10/2011 10:36 AM, Oliver Endriss wrote: From: Ralph Metzler r...@metzlerbros.de Driver for the Common Interface Controller CXD2099AR. Supports the CI of the cineS2 DVB-S2. For now, data is passed through

Re: [PATCH] DVB Satellite Channel Routing support for DVB-S

2011-01-10 Thread Oliver Endriss
On Monday 10 January 2011 16:54:14 Andreas Oberritter wrote: On 01/10/2011 04:07 PM, Thomas Schlöter wrote: I decided this should be supported by the kernel frontend code as it is impossible to send that special DiSEqC / voltage sequence from userspace. Why do you think that's

Re: [PATCH] DVB Satellite Channel Routing support for DVB-S

2011-01-10 Thread Thomas Schlöter
Am 10.01.2011 um 16:54 schrieb Andreas Oberritter: - In many TV recording applications there is no support for SCR and it would be harder to implement in these. For VDR, there is a patch which is difficult to configure and has some technical limitations. In MythTV and XMBC I could not

Re: [RFCv2 PATCH 0/5] Use control framework in cafe_ccic and s_config removal

2011-01-10 Thread Hans Verkuil
On Monday, January 10, 2011 12:08:42 Hans Verkuil wrote: Hi, Another reason why s_config is a bad idea. Thanks a lot for working on this. I had a quick look and don't have any objections. This has been extensively tested on my humble OLPC laptop (and it took me 4-5 hours just

Re: [InfraSchlot SPAM Check] Re: [PATCH] DVB Satellite Channel Routing support for DVB-S

2011-01-10 Thread Thomas Schlöter
Hello Oliver, Am 10.01.2011 um 18:28 schrieb Oliver Endriss: Ack, this stuff should be implemented as a userspace library. (Btw, there is an experimental unicable patch for VDR.) Yes, there is. I have not testet it as I am going to use MythTV, but for what I have read in some forums, many

[cron job] v4l-dvb daily build: WARNINGS

2011-01-10 Thread Hans Verkuil
This message is generated daily by a cron job that builds v4l-dvb for the kernels and architectures in the list below. Results of the daily build of v4l-dvb: date:Mon Jan 10 19:00:35 CET 2011 git master: 59365d136d205cc20fe666ca7f89b1c5001b0d5a git media-master: gcc version:

Re: Enable IR on hdpvr

2011-01-10 Thread Jarod Wilson
On Jan 10, 2011, at 9:25 AM, Jason Gauthier wrote: I did simply try changing: /* until i2c is working properly */ retval = 0; /* hdpvr_register_i2c_ir(dev); */ if (retval 0) so that it would register with i2c. Doing so returns a positive registration with I2C, but the

Re: Maybe I'll hack on lirc_zilog.c this coming weekend (Re: Enable IR on hdpvr)

2011-01-10 Thread Jarod Wilson
On Jan 10, 2011, at 7:12 AM, Andy Walls wrote: On Mon, 2011-01-10 at 01:05 -0500, Jarod Wilson wrote: On Jan 9, 2011, at 7:36 PM, Jason Gauthier wrote: There's a bit more to it than just the one line change. Here's the patch we're carrying in the Fedora kernels to enable it:

Re: [GIT PATCHES FOR 2.6.38] usbvision BKL removal and cleanup

2011-01-10 Thread Thierry Merle
Hi Hans, Le Wed, 29 Dec 2010 17:56:36 +0100, Hans Verkuil hverk...@xs4all.nl a écrit : Hi Mauro, The first patch converts usbvision to core-assisted locking, the others do a big coding style cleanup. I want to clean up this driver in the future, so the first step is to fix all the

Re: [PATCH 01/18] Altera FPGA firmware download module.

2011-01-10 Thread Igor M. Liplianin
В сообщении от 5 января 2011 12:26:03 автор Laurent Pinchart написал: Hi, On Friday 31 December 2010 16:04:13 Ben Gamari wrote: On Fri, 31 Dec 2010 09:47:41 -0200, Mauro Carvalho Chehab wrote: I understand this. However, a complete JTAG state machine in the kernel, plus an Altera

Re: Debug code in HG repositories

2011-01-10 Thread Theodore Kilgore
Mauro, A few comments in-line. Vide infra. On Mon, 10 Jan 2011, Mauro Carvalho Chehab wrote: Em 07-01-2011 21:42, Theodore Kilgore escreveu: Have you tried Mauro's media_build tree? I had to use it today to test a driver from git on a 2.6.35 kernel. Works quite nicely. Perhaps we

Re: [PATCH 1/2] [media] v4l2-ctrls: Add V4L2_CID_NIGHT_MODE control to support night mode

2011-01-10 Thread Hans Verkuil
On Monday, January 10, 2011 23:18:26 Roberto Rodriguez Alcala wrote: From: Roberto Rodriguez Alcala rralc...@gmail.com Signed-off-by: Roberto Rodriguez Alcala rralc...@gmail.com --- drivers/media/video/v4l2-ctrls.c |2 ++ include/linux/videodev2.h|2 ++ 2 files changed,

Re: [PATCH 1/2] [media] v4l2-ctrls: Add V4L2_CID_NIGHT_MODE control to support night mode

2011-01-10 Thread Guennadi Liakhovetski
On Mon, 10 Jan 2011, Roberto Rodriguez Alcala wrote: From: Roberto Rodriguez Alcala rralc...@gmail.com Signed-off-by: Roberto Rodriguez Alcala rralc...@gmail.com --- drivers/media/video/v4l2-ctrls.c |2 ++ include/linux/videodev2.h|2 ++ 2 files changed, 4

Re: Debug code in HG repositories

2011-01-10 Thread Oliver Endriss
On Monday 10 January 2011 13:27:09 Mauro Carvalho Chehab wrote: ... diff -upr /tmp/stripped/drivers/media/dvb/ngene/ngene-cards.c /tmp/not_stripped/drivers/media/dvb/ngene/ngene-cards.c --- /tmp/stripped/drivers/media/dvb/ngene/ngene-cards.c 2011-01-10 10:01:49.0 -0200

Interconnection of different DVB adapters (was: Re: [PATCH 07/16] ngene: CXD2099AR Common Interface driver)

2011-01-10 Thread Andreas Oberritter
On 01/10/2011 06:20 PM, Oliver Endriss wrote: On Monday 10 January 2011 15:05:34 Andreas Oberritter wrote: On 01/10/2011 10:36 AM, Oliver Endriss wrote: From: Ralph Metzler r...@metzlerbros.de Driver for the Common Interface Controller CXD2099AR. Supports the CI of the cineS2 DVB-S2. For

Re: Interconnection of different DVB adapters (was: Re: [PATCH 07/16] ngene: CXD2099AR Common Interface driver)

2011-01-10 Thread Oliver Endriss
On Tuesday 11 January 2011 02:32:14 Andreas Oberritter wrote: On 01/10/2011 06:20 PM, Oliver Endriss wrote: On Monday 10 January 2011 15:05:34 Andreas Oberritter wrote: On 01/10/2011 10:36 AM, Oliver Endriss wrote: From: Ralph Metzler r...@metzlerbros.de Driver for the Common Interface

[GIT PATCHES FOR 2.6.38]

2011-01-10 Thread Hans Verkuil
Hi Mauro, These patches remove s_config legacy support, replace it with new internal operations (also needed for the upcoming subdev device nodes) and finally rename has_new to is_new and document that control framework flag. My original RFC also converted OLPC drivers, but those are scheduled