Re: [REVIEW PATCH 11/14] OMAP34XXCAM: Add driver

2009-01-12 Thread Hans Verkuil
On Tuesday 13 January 2009 03:03:34 Aguirre Rodriguez, Sergio Alberto wrote: > Signed-off-by: Sakari Ailus > Signed-off-by: Sergio Aguirre > --- > drivers/media/video/Kconfig |8 + > drivers/media/video/Makefile |2 + > drivers/media/video/omap34xxcam.c | 2017 > ++

Re: KWorld ATSC 115 all static

2009-01-12 Thread hermann pitton
Hi, Am Montag, den 12.01.2009, 21:10 -0500 schrieb CityK: > Hans Verkuil wrote: > > Yes, I can. I'll do saa7134 since I have an empress card anyway. It > > should be quite easy (the cx18 complication is not an issue here). > > > > Regards, > > > > Hans > > Thanks Hans! > yes, Hans is a ver

Re: saa7134: race between device initialization and first interrupt

2009-01-12 Thread Andy Walls
On Mon, 2009-01-12 at 11:13 -0800, Trent Piepho wrote: > On Sun, 11 Jan 2009, Andy Walls wrote: > > On Mon, 2009-01-12 at 00:54 +0100, hermann pitton wrote: > > > Am Samstag, den 10.01.2009, 22:05 -0500 schrieb Andy Walls: > > > > On Sun, 2009-01-11 at 03:32 +0100, hermann pitton wrote: > > > > > A

Re: [PULL] http://linuxtv.org/hg/~awalls/v4l-dvb

2009-01-12 Thread Andy Walls
On Mon, 2009-01-12 at 06:09 -0500, Brandon Jenkins wrote: > On Sun, Jan 4, 2009 at 7:54 PM, Andy Walls wrote: > > Mauro, > > > > Adding one more to my pull request. > > > > Please pull from: > > > > http://linuxtv.org/hg/~awalls/v4l-dvb > > > > for the following changes: > > > > cx18: Fix bad audi

Re: FM transmitter support under v4l2?

2009-01-12 Thread Mauro Carvalho Chehab
On Mon, 12 Jan 2009 15:00:10 +0530 Trilok Soni wrote: > Hi Mauro, > > >> > >> FYI..now maemo kernel team seems to have written Si4713 FM transmitter > >> driver interfaced over I2C. It is available in the kernel diff here. > >> > >> http://repository.maemo.org/pool/maemo5.0/free/k/kernel/kernel_

RE: [REVIEW PATCH 00/14] OMAP3 camera + ISP + MT9P012 sensor driver v2

2009-01-12 Thread Aguirre Rodriguez, Sergio Alberto
Hi Stanley, I'm currently have that patch on hold, along with the ISP wrapper because I'm reworking them, and also I wanted first to be sure the OMAP3 camera core gets pushed (that's why I included only one sensor driver, to be able to test at least the camera core), and that way I feel it'll b

Re: [REVIEW PATCH 00/14] OMAP3 camera + ISP + MT9P012 sensor driver v2

2009-01-12 Thread stanley.miao
Hi,Sergio, I saw you had a ov3640 patch in omapzoom tree. Why don't you submit it together ? Stanley. On Mon, 2009-01-12 at 20:03 -0600, Aguirre Rodriguez, Sergio Alberto wrote: > Hi, > > I'm sending the following patchset for review to the relevant lists > (linux-omap, v4l, linux-media). > >

Re: KWorld ATSC 115 all static

2009-01-12 Thread CityK
Hans Verkuil wrote: > Yes, I can. I'll do saa7134 since I have an empress card anyway. It > should be quite easy (the cx18 complication is not an issue here). > > Regards, > > Hans Thanks Hans! -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a messag

[REVIEW PATCH 13/14] OMAP: CAM: Add DW9710 Lens Driver

2009-01-12 Thread Aguirre Rodriguez, Sergio Alberto
This adds the DW9710 Lens driver Signed-off-by: Sergio Aguirre --- drivers/media/video/Kconfig |8 + drivers/media/video/Makefile |1 + drivers/media/video/dw9710.c | 548 + drivers/media/video/dw9710_priv.h | 57 include/media/

[REVIEW PATCH 14/14] OMAP34XX: CAM: Add Sensors Support

2009-01-12 Thread Aguirre Rodriguez, Sergio Alberto
This adds support in OMAP34xx SDP board file for MT9P012 Sensor and DW9710 Lens driver. Signed-off-by: Sergio Aguirre --- arch/arm/mach-omap2/board-3430sdp.c | 319 ++- 1 files changed, 318 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-omap2/board-343

[REVIEW PATCH 10/14] OMAP: CAM: Add ISP gain tables

2009-01-12 Thread Aguirre Rodriguez, Sergio Alberto
This adds the OMAP ISP gain tables. Includes: * Blue Gamma gain table * CFA gain table * Green Gamma gain table * Luma Enhancement gain table * Noise filter gain table * Red Gamma gain table Signed-off-by: Sergio Aguirre --- drivers/media/video/isp/bluegamma_table.h| 1040 +++

[REVIEW PATCH 03/14] OMAP34XX: CAM: Resources fixes

2009-01-12 Thread Aguirre Rodriguez, Sergio Alberto
This patch reassigns resources of a omap3isp platform device, which is more adequate than the older one. This is needed for using __raw_[readl,writel] calls after ioremapping the specified platform resources in ISP driver. Signed-off-by: Sergio Aguirre --- arch/arm/mach-omap2/devices.c

[REVIEW PATCH 02/14] v4l2-int-device: add support for VIDIOC_QUERYMENU

2009-01-12 Thread Aguirre Rodriguez, Sergio Alberto
Signed-off-by: Tuukka Toivonen Signed-off-by: Sergio Aguirre --- include/media/v4l2-int-device.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/media/v4l2-int-device.h b/include/media/v4l2-int-device.h index 85a1834..052ffe0 100644 --- a/include/media/v4l2-int

[REVIEW PATCH 01/14] V4L: Int if: Dummy slave

2009-01-12 Thread Aguirre Rodriguez, Sergio Alberto
This patch implements a dummy slave that has no functionality. Helps managing slaves in the OMAP 3 camera driver; no need to check for NULL pointers. Signed-off-by: Sakari Ailus Signed-off-by: Sergio Aguirre --- drivers/media/video/v4l2-int-device.c | 19 +++ include/media/v4l

[REVIEW PATCH 00/14] OMAP3 camera + ISP + MT9P012 sensor driver v2

2009-01-12 Thread Aguirre Rodriguez, Sergio Alberto
Hi, I'm sending the following patchset for review to the relevant lists (linux-omap, v4l, linux-media). Includes: - Omap3 camera core + ISP drivers. - MT9P012 sensor driver (adapted to 3430SDP) - DW9710 lens driver (adapted to work with MT9P012 for SDP) - Necessary v4l2-int-device changes to

TT S2-3200 card - which repo to choose

2009-01-12 Thread Chris Silva
Hi, folks. What's the most up-to-date repo to use for a TT S2-3200 card? s2-lipliandvb or V4L-DVB? Currently I' m using s2-lipliandvb, but with all the work being done because of kernel pull, I lost track. Any thoughts on what version works best? Any significant differences? Thanks -- To unsub

AW: [PATCH] Terratec Cinergy DT XS Diversity new USB ID (0ccd:0081)

2009-01-12 Thread Nicolas Fournier
This time with the patch as attachment: The following patch adds support for a new version of the Terratec Cinergy DT USB XS Diversity Dual DVB-T TV tuner stick. The USB ID of the new stick is 0ccd:0081. The hardware of the stick has changed, when compared to the first version of this stick, but i

Re: saa7134: race between device initialization and first interrupt

2009-01-12 Thread hermann pitton
Hi, Am Sonntag, den 11.01.2009, 20:22 -0500 schrieb Andy Walls: > > > > So "dev->input" is NULL when saa7134-tvaudio.c:mute_input_7133() is > > called and that is what causes the Oops. It was called by the > > saa7134_irq() handler trying to take action, shortly after request_irq() > > was calle

[PULL] http://www.linuxtv.org/hg/~hverkuil/v4l-dvb-saa7134

2009-01-12 Thread Hans Verkuil
Hi Mauro, Please pull from http://www.linuxtv.org/hg/~hverkuil/v4l-dvb-saa7134 for the following: - ivtv: fix memory leak - v4l2-device: fix buggy macro - v4l2-subdev: add v4l2_ext_controls support The first two are bug fixes with prio high and must go to 2.6.29. It would be nice if the third

[cron job] WARNINGS: armv5 armv5-ixp armv5-omap2 i686 m32r mips powerpc64 x86_64 v4l-dvb build

2009-01-12 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 12 19:00:05 CET 2009 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 10220:036cad8c8b51 gcc version: gcc

Re: saa7134: race between device initialization and first interrupt

2009-01-12 Thread Trent Piepho
On Sun, 11 Jan 2009, Andy Walls wrote: > On Mon, 2009-01-12 at 00:54 +0100, hermann pitton wrote: > > Am Samstag, den 10.01.2009, 22:05 -0500 schrieb Andy Walls: > > > On Sun, 2009-01-11 at 03:32 +0100, hermann pitton wrote: > > > > Am Samstag, den 10.01.2009, 07:37 -0500 schrieb Andy Walls: > > >

RE: [PATCH] v4l/tvp514x: make the module aware of rich people

2009-01-12 Thread Hiremath, Vaibhav
Thanks, Vaibhav Hiremath > -Original Message- > From: Sebastian Andrzej Siewior [mailto:bige...@linutronix.de] > Sent: Monday, January 12, 2009 11:55 PM > To: Hiremath, Vaibhav > Cc: linux-media@vger.kernel.org; Mauro Carvalho Chehab; video4linux- > l...@redhat.com > Subject: [PATCH] v4l/

Re: [linux-dvb] af9015

2009-01-12 Thread Antti Palosaari
Lindsay Mathieson wrote: I see the trunk now supports the DigitalNow TinyTwin (af9015), but only for one tuner. Is it possible to enable the second tuner or are there still issues with that? Yes it is possible to enable second tuner by module param, modprobe dvb-usb-af9015 dual_mode=1. But I

[PATCH] v4l/tvp514x: make the module aware of rich people

2009-01-12 Thread Sebastian Andrzej Siewior
because they might design two of those chips on a single board. You never know. Signed-off-by: Sebastian Andrzej Siewior --- drivers/media/video/tvp514x.c | 52 +++- 1 files changed, 30 insertions(+), 22 deletions(-) diff --git a/drivers/media/video/tvp514x

Re: [hg:v4l-dvb] zoran: Fix a few CodingStyle issues rised by the previous patch

2009-01-12 Thread Mauro Carvalho Chehab
On Mon, 12 Jan 2009 09:29:54 -0800 (PST) Trent Piepho wrote: > On Sun, 11 Jan 2009, Mauro Carvalho Chehab wrote: > > On Sun, 11 Jan 2009 14:06:01 -0800 (PST) > > Trent Piepho wrote: > > > On Sun, 11 Jan 2009, Patch from Mauro Carvalho Chehab wrote: > > > > From: Mauro Carvalho Chehab > > > >

Re: Introduction

2009-01-12 Thread Mauro Carvalho Chehab
On Mon, 12 Jan 2009 07:33:19 -0800 (PST) Uri Shkolnik wrote: > Mauro, > > My name is Uri Shkolnik, I work at Siano Mobile Silicon as a software > architect. > > I tried to get in touch with you lately, but I had probably used the wrong > email address, so forgive me for contacting by reply

Re: Fw: [PATCH] v4l/dvb: remove err macro from few usb devices

2009-01-12 Thread Dean Anderson
Alexey Klimov wrote: Hello, all Dean, so you think that we don't need s2255 name in the beginning of message and we doesn't need s2255_dev_err macros, right ? As i remember pr_err is just printk with KERN_ERR.. Not at all. We must have s2255 in the beginning of the message. I wasn't s

Re: [linux-dvb] [PATCH] cx88-dvb: Fix order of frontend allocations (Re: current v4l-dvb - cannot access /dev/dvb/: No such file or directory)

2009-01-12 Thread Mika Laitio
I don't have the hardware to test with. Please try this patch. Hi I tested the patch and it helped me to get the drivers back to normal state! My system has hvr-1300 and hvr-4000 and only 1 lnb without diseq. I am using 2.6.27.7 kernel and I did two test runs. - First I build the current dr

Re: [PATCH] pwc: add support for webcam snapshot button (2)

2009-01-12 Thread Pham Thanh Nam
Hi all Maybe Linux Media team has not received my patch. I also CC'ed my former email to linux-media mailing list, but it has been filtered out by Linux Media mail server's policy for some reason, so I resend the patch. *** PATCH BEGINS FROM HERE *** This patch adds support for Philips webcam snaps

Re: [patch] add video_nr module param to gspca

2009-01-12 Thread Stas Sergeev
Hi. Jean-Francois Moine wrote: Looking at the video drivers, I found that only half of these ones have this parameter. Then, I think it should be better to remove it everywhere! OK, that might be a solution too. :) In fact, setting the video number in the right driver before plugging any vide

Re: [PULL] http://linuxtv.org/hg/~awalls/v4l-dvb

2009-01-12 Thread Brandon Jenkins
On Sun, Jan 4, 2009 at 7:54 PM, Andy Walls wrote: > Mauro, > > Adding one more to my pull request. > > Please pull from: > > http://linuxtv.org/hg/~awalls/v4l-dvb > > for the following changes: > > cx18: Fix bad audio in first analog capture. > cx18, cx2341x: Fix bugs in cx18 AC3 control and compl

Re: [PATCH] cx88-dvb: Fix order of frontend allocations (Re: [linux-dvb] current v4l-dvb - cannot access /dev/dvb/: No such file or directory)

2009-01-12 Thread Pierre Gronlier
Andy Walls wrote: On Fri, 2009-01-09 at 15:40 +0300, Goga777 wrote: hI With today v4l-dvb I couldn't run my hvr4000 card on 2.6.27 kernel [ 14.555162] cx88/2: cx2388x dvb driver version 0.0.6 loaded [ 14.555231] cx88/2: registering cx8802 driver, type: dvb access: shared [ 14.555303]

Re: FM transmitter support under v4l2?

2009-01-12 Thread Trilok Soni
Hi Mauro, >> >> FYI..now maemo kernel team seems to have written Si4713 FM transmitter >> driver interfaced over I2C. It is available in the kernel diff here. >> >> http://repository.maemo.org/pool/maemo5.0/free/k/kernel/kernel_2.6.27-20084805r03.diff.gz >> >> Please download and unzip it and sear