Re: [PATCH] xc5000, fix fw upload crash

2011-05-19 Thread Dmitri Belimov
Hi Devin snip > NACK! > > I don't think this patch is correct. Concurrency problems are > expected to be handled in the upper layers, as there are usually much > more significant problems than just this case. For example, if this > is a race between V4L2 and DVB, it is the responsibility of br

Re: [libdvben50221] [PATCH] Assign same resource_id in open_session_response when "resource non-existent"

2011-05-19 Thread Issa Gorissen
On 19/05/11 23:01, Sébastien RAILLARD (COEXSI) wrote: > > Yes, of course, but I don't find information that can help me to provide the > correct format. > Is-there a documentation somewhere that explains how patches must be > formatted to be correctly tracked? This should help [http://www.linuxtv.

Re: AverMedia A306 (cx23385, xc3028, af9013) (A577 too ?)

2011-05-19 Thread Antti Palosaari
On 05/20/2011 12:13 AM, wal...@free.fr wrote: I've tried to use my A306 board on my system. All the main chips are fully supported by linux. At this stage the CX23385 and the tuner: xc3028 seem to respond properly. But the DVB-T chip (af9013) is silent. Nevertheless both chips are visible on the

[PATCH 06/23] use register_chrdev_ids in drivers/media/

2011-05-19 Thread Jim Cromie
Since new api passes dev_t*, hoist inline MKDEV out to local var assignment, and replace other inline MKDEVs with new var. This and 2 subsequent patches brought to you by coccinelle/spatch cc: Mauro Carvalho Chehab cc: linux-media@vger.kernel.org @ rcr_md @ identifier f; expression major, minor

AverMedia A306 (cx23385, xc3028, af9013) (A577 too ?)

2011-05-19 Thread wallak
Hello All, I've tried to use my A306 board on my system. All the main chips are fully supported by linux. At this stage the CX23385 and the tuner: xc3028 seem to respond properly. But the DVB-T chip (af9013) is silent. Nevertheless both chips are visible on the I2C bus. I've no full datasheet of

RE: [libdvben50221] [PATCH] Assign same resource_id in open_session_response when "resource non-existent"

2011-05-19 Thread COEXSI
> -Original Message- > From: linux-media-ow...@vger.kernel.org [mailto:linux-media- > ow...@vger.kernel.org] On Behalf Of Andreas Oberritter > Sent: jeudi 19 mai 2011 14:58 > To: Tomer Barletz > Cc: Brice DUBOST; linux-media@vger.kernel.org > Subject: Re: [libdvben50221] [PATCH] Assign sa

Re: [PATCH v5] radio-sf16fmr2: convert to generic TEA575x interface

2011-05-19 Thread Hans Verkuil
On Thursday, May 19, 2011 18:15:43 Ondrej Zary wrote: > Convert radio-sf16fmr2 to use generic TEA575x implementation. Most of the > driver code goes away as SF16-FMR2 is basically just a TEA5757 tuner > connected to ISA bus. > The card can optionally be equipped with PT2254A volume control (equival

Re: [PATCH v5] tea575x: convert to control framework

2011-05-19 Thread Hans Verkuil
On Thursday, May 19, 2011 18:11:49 Ondrej Zary wrote: > Convert tea575x-tuner to use the new V4L2 control framework. Also add > ext_init() callback that can be used by a card driver for additional > initialization right before registering the video device (for SF16-FMR2). > > Also embed struct vid

Re: Fw: [PATCH -next RESEND/still needed] staging: altera-jtag needs delay.h

2011-05-19 Thread Randy Dunlap
On 05/19/11 13:39, Greg KH wrote: > On Thu, May 19, 2011 at 04:22:06PM -0300, Mauro Carvalho Chehab wrote: >> Em 28-03-2011 12:23, Randy Dunlap escreveu: >>> From: Randy Dunlap >>> >>> altera-jtag.c needs to include to fix a build error: >>> >>> drivers/staging/altera-stapl/altera-jtag.c:398: err

Re: Fw: [PATCH -next RESEND/still needed] staging: altera-jtag needs delay.h

2011-05-19 Thread Greg KH
On Thu, May 19, 2011 at 04:22:06PM -0300, Mauro Carvalho Chehab wrote: > Em 28-03-2011 12:23, Randy Dunlap escreveu: > > From: Randy Dunlap > > > > altera-jtag.c needs to include to fix a build error: > > > > drivers/staging/altera-stapl/altera-jtag.c:398: error: implicit declaration > > of fu

Re: Fw: [PATCH -next RESEND/still needed] staging: altera-jtag needs delay.h

2011-05-19 Thread Mauro Carvalho Chehab
Em 28-03-2011 12:23, Randy Dunlap escreveu: > From: Randy Dunlap > > altera-jtag.c needs to include to fix a build error: > > drivers/staging/altera-stapl/altera-jtag.c:398: error: implicit declaration > of function 'udelay' > > Signed-off-by: Randy Dunlap Acked-by: Mauro Carvalho Chehab >

[RFC] add i2c_gate_ctrl to mb86a20s.c

2011-05-19 Thread Manoel PN
The register 0xfe controls the i2c-bus from the mb86a20s to tuner. Signed-off-by: Manoel Pinheiro diff --git a/drivers/media/dvb/frontends/mb86a20s.c b/drivers/media/dvb/frontends/mb86a20s.c index 0f867a5..f3c4013 100644 --- a/drivers/media/dvb/frontends/mb86a20s.c +++ b/drivers/media/dvb/fro

[cron job] v4l-dvb daily build: ERRORS

2011-05-19 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:Thu May 19 19:00:32 CEST 2011 git hash:f9b51477fe540fb4c65a05027fdd6f2ecce4db3b gcc version: i686-linux-gcc (GCC) 4.5

[RFC/PATCH 1/2] v4l: Add generic board subdev registration function

2011-05-19 Thread Laurent Pinchart
The new v4l2_new_subdev_board() function creates and register a subdev based on generic board information. The board information structure includes a bus type and bus type-specific information. Only I2C and SPI busses are currently supported. Signed-off-by: Laurent Pinchart --- drivers/media/vi

[RFC/PATCH 2/2] omap3isp: Use generic subdev registration function

2011-05-19 Thread Laurent Pinchart
Replace custom subdev registration with a call to v4l2_new_subdev_board(). Signed-off-by: Laurent Pinchart --- drivers/media/video/omap3isp/isp.c | 32 +--- drivers/media/video/omap3isp/isp.h |7 +-- 2 files changed, 10 insertions(+), 29 deletions(-) diff -

[PATCH] saa7134-dvb.c kworld_sbtvd

2011-05-19 Thread Manoel PN
The correct place to put i2c_gate_ctrl is before calling tda18271_attach, because the driver tda18271 will use it to enable or disable the i2c-bus from the demodulator to the tuner. And thus eliminate the error message: "Unknown device (255) detected @ 1-00c0, device not supported" in the driver t

[PATCH v5] radio-sf16fmr2: convert to generic TEA575x interface

2011-05-19 Thread Ondrej Zary
Convert radio-sf16fmr2 to use generic TEA575x implementation. Most of the driver code goes away as SF16-FMR2 is basically just a TEA5757 tuner connected to ISA bus. The card can optionally be equipped with PT2254A volume control (equivalent of TC9154AP) - the volume setting is completely reworked (

[PATCH v5] tea575x: convert to control framework

2011-05-19 Thread Ondrej Zary
Convert tea575x-tuner to use the new V4L2 control framework. Also add ext_init() callback that can be used by a card driver for additional initialization right before registering the video device (for SF16-FMR2). Also embed struct video_device to struct snd_tea575x to simplify the code. Signed-of

Re: [PATCH 0/2] V4L: Extended crop/compose API

2011-05-19 Thread Tomasz Stanislawski
Tomasz Stanislawski wrote: Laurent Pinchart wrote: On Saturday 14 May 2011 12:50:32 Hans Verkuil wrote: On Friday, May 13, 2011 14:43:08 Laurent Pinchart wrote: On Saturday 07 May 2011 13:52:25 Hans Verkuil wrote: On Thursday, May 05, 2011 11:39:54 Tomasz Stanislawski wrote: Hi Laurent and H

Re: FW: OMAP 3 ISP

2011-05-19 Thread Sakari Ailus
ter a subdev based > > > on a v4l2_subdev_board_info structure. > > > > > > Is that in line with what you've done ? I can provide a patch that > > > implements this for I2C and SPI, and let you add platform subdevs if > > >

RE: FW: OMAP 3 ISP

2011-05-19 Thread Alex Gershgorin
vs if > > that can help you. > > Hi Laurent, > > Yes, that looks very similar to what I've done. I was going to submit > SPI support, too, which I also have, but it sounds like you've already > done that? I'm currently still using a 2.6.38 tree based on an

RE: [PATCH v16 01/13] davinci vpbe: V4L2 display driver for DM644X SoC

2011-05-19 Thread Hadli, Manjunath
Laurent, Thank you for your comments. I have addressed all your suggestions. Please find my comments inline. Also, Would you please review the patch again? The branch is at: http://git.linuxtv.org/mhadli/v4l-dvb-davinci_devices.git?a=shortlog;h=refs/heads/forkhilman2 and the patch that you l

Re: FW: OMAP 3 ISP

2011-05-19 Thread Laurent Pinchart
Hi Michael, On Thursday 19 May 2011 16:24:29 Michael Jones wrote: > On 05/19/2011 03:56 PM, Laurent Pinchart wrote: > > On Thursday 19 May 2011 15:44:18 Michael Jones wrote: > >> On 05/19/2011 03:02 PM, Laurent Pinchart wrote: > >>> On Thursday 19 May 2011 14:51:16 Alex Gershgorin wrote: > Th

Re: FW: OMAP 3 ISP

2011-05-19 Thread Michael Jones
On 05/19/2011 03:56 PM, Laurent Pinchart wrote: > Hi Michael, > > On Thursday 19 May 2011 15:44:18 Michael Jones wrote: >> On 05/19/2011 03:02 PM, Laurent Pinchart wrote: >>> On Thursday 19 May 2011 14:51:16 Alex Gershgorin wrote: Thanks Laurent, My video source is not the video cam

Re: [PATCH 0/3] V4L2 API for flash devices and the adp1653 flash controller driver

2011-05-19 Thread Laurent Pinchart
Hi David, On Thursday 19 May 2011 16:22:45 David Cohen wrote: > On Thu, May 19, 2011 at 3:14 PM, Laurent Pinchart wrote: > > On Thursday 19 May 2011 12:41:14 Sakari Ailus wrote: > >> Hi, > >> > >> This patchset implements RFC v4 of V4L2 API for flash devices [1], with > >> minor modifications, an

Re: [PATCH 0/3] V4L2 API for flash devices and the adp1653 flash controller driver

2011-05-19 Thread David Cohen
Hi Laurent, On Thu, May 19, 2011 at 3:14 PM, Laurent Pinchart wrote: > Hi Sakari, > > On Thursday 19 May 2011 12:41:14 Sakari Ailus wrote: >> Hi, >> >> This patchset implements RFC v4 of V4L2 API for flash devices [1], with >> minor modifications, and adds the adp1653 flash controller driver. > >

Re: [PATCH 0/2] V4L: Extended crop/compose API

2011-05-19 Thread Laurent Pinchart
On Thursday 19 May 2011 16:06:12 Tomasz Stanislawski wrote: > Laurent Pinchart wrote: > > On Wednesday 18 May 2011 15:03:13 Sylwester Nawrocki wrote: > >> On 05/18/2011 02:31 PM, Hans Verkuil wrote: > >>> On Wednesday, May 18, 2011 14:06:21 Sylwester Nawrocki wrote: > On 05/16/2011 09:21 AM, L

Re: [PATCH 0/2] V4L: Extended crop/compose API

2011-05-19 Thread Tomasz Stanislawski
Laurent Pinchart wrote: On Wednesday 18 May 2011 15:03:13 Sylwester Nawrocki wrote: On 05/18/2011 02:31 PM, Hans Verkuil wrote: On Wednesday, May 18, 2011 14:06:21 Sylwester Nawrocki wrote: On 05/16/2011 09:21 AM, Laurent Pinchart wrote: On Saturday 14 May 2011 12:50:32 Hans Verkuil wrote: O

RE: [PATCH 0/2] V4L: Extended crop/compose API

2011-05-19 Thread Marek Szyprowski
Hello, On Thursday, May 19, 2011 3:48 PM Laurent Pinchart wrote: > On Wednesday 18 May 2011 15:03:13 Sylwester Nawrocki wrote: > > On 05/18/2011 02:31 PM, Hans Verkuil wrote: > > > On Wednesday, May 18, 2011 14:06:21 Sylwester Nawrocki wrote: > > >> On 05/16/2011 09:21 AM, Laurent Pinchart wrote:

Re: FW: OMAP 3 ISP

2011-05-19 Thread Laurent Pinchart
Hi Michael, On Thursday 19 May 2011 15:44:18 Michael Jones wrote: > On 05/19/2011 03:02 PM, Laurent Pinchart wrote: > > On Thursday 19 May 2011 14:51:16 Alex Gershgorin wrote: > >> Thanks Laurent, > >> > >> My video source is not the video camera and performs many other > >> functions. For this p

Re: FW: OMAP 3 ISP

2011-05-19 Thread Michael Jones
On 05/19/2011 03:02 PM, Laurent Pinchart wrote: > Hi Alex, > > On Thursday 19 May 2011 14:51:16 Alex Gershgorin wrote: >> Thanks Laurent, >> >> My video source is not the video camera and performs many other functions. >> For this purpose I have RS232 port. >> As for the video, it runs continuousl

Re: [PATCH 0/2] V4L: Extended crop/compose API

2011-05-19 Thread Laurent Pinchart
On Wednesday 18 May 2011 15:03:13 Sylwester Nawrocki wrote: > On 05/18/2011 02:31 PM, Hans Verkuil wrote: > > On Wednesday, May 18, 2011 14:06:21 Sylwester Nawrocki wrote: > >> On 05/16/2011 09:21 AM, Laurent Pinchart wrote: > >> > On Saturday 14 May 2011 12:50:32 Hans Verkuil wrote: > >> >> On Fri

Re: [PATCH 0/2] V4L: Extended crop/compose API

2011-05-19 Thread Laurent Pinchart
Hi Hans, On Wednesday 18 May 2011 14:31:59 Hans Verkuil wrote: > On Wednesday, May 18, 2011 14:06:21 Sylwester Nawrocki wrote: > > On 05/16/2011 09:21 AM, Laurent Pinchart wrote: > > > On Saturday 14 May 2011 12:50:32 Hans Verkuil wrote: > > >> On Friday, May 13, 2011 14:43:08 Laurent Pinchart wro

Re: FW: OMAP 3 ISP

2011-05-19 Thread Laurent Pinchart
Hi Alex, On Thursday 19 May 2011 14:51:16 Alex Gershgorin wrote: > Thanks Laurent, > > My video source is not the video camera and performs many other functions. > For this purpose I have RS232 port. > As for the video, it runs continuously and is not subject to control except > for the power sup

Re: [libdvben50221] [PATCH] Assign same resource_id in open_session_response when "resource non-existent"

2011-05-19 Thread Andreas Oberritter
On 05/18/2011 09:16 PM, Tomer Barletz wrote: > On Tue, May 17, 2011 at 8:46 AM, Brice DUBOST wrote: >> On 18/01/2011 15:42, Tomer Barletz wrote: >>> Attached a patch for a bug in the lookup_callback function, were in >>> case of a non-existent resource, the connected_resource_id is not >>> initial

RE: FW: OMAP 3 ISP

2011-05-19 Thread Alex Gershgorin
nt.pinch...@ideasonboard.com. Regards, -- Sakari Ailus sakari dot ailus at iki dot fi __ Information from ESET NOD32 Antivirus, version of virus signature database 6134 (20110519) __ The message was checked by ESET NOD32 Antivirus. http://www.eset.com __ Informa

[libv4l-mcplugin PATCH 3/3] Add libv4l2 media controller plugin interface files

2011-05-19 Thread Yordan Kamenov
Add interface functions init(), close() and ioctl(), called by libv4l2. Signed-off-by: Yordan Kamenov --- libv4l2plugin-omap3mc.c | 241 +++ libv4l2plugin-omap3mc.h | 91 ++ 2 files changed, 332 insertions(+), 0 deletions(-) create

[libv4l-mcplugin PATCH 2/3] Add files for v4l operations

2011-05-19 Thread Yordan Kamenov
Add files with implementation of v4l ioctls. Signed-off-by: Yordan Kamenov --- operations.c | 611 ++ operations.h | 44 + 2 files changed, 655 insertions(+), 0 deletions(-) create mode 100644 operations.c create mode 100644 operat

[libv4l-mcplugin PATCH 1/3] Add files for media controller pipelines

2011-05-19 Thread Yordan Kamenov
Add Makefile. Add files for Media Controller pipelines initialization, configuration and destruction. Add file for list operations. Add config file. Signed-off-by: Yordan Kamenov --- Makefile | 30 ++ omap3-mc.conf | 82 + paths.c | 959 +++

[libv4l-mcplugin PATCH 0/3] Media controller plugin for libv4l2

2011-05-19 Thread Yordan Kamenov
Hi, This is the Media Controller plugin for libv4l. It uses libv4l2 plugin support which is accepted by Hans De Goede, but not yet included in mainline libv4l2: http://www.spinics.net/lists/linux-media/msg32017.html The plugin allows a traditional v4l2 applications to work with Media Controller f

[RESEND PATCH 1/1] libv4l2: Add plugin support to libv4l

2011-05-19 Thread Yordan Kamenov
A libv4l2 plugin will sit in between libv4l2 itself and the actual /dev/video device node a fd refers to. It will be called each time libv4l2 wants to do an operation (read/write/ioctl) on the actual /dev/video node in question. Signed-off-by: Yordan Kamenov --- lib/include/libv4l2-plugin.h

Re: [PATCH 0/3] V4L2 API for flash devices and the adp1653 flash controller driver

2011-05-19 Thread Laurent Pinchart
Hi Sakari, On Thursday 19 May 2011 12:41:14 Sakari Ailus wrote: > Hi, > > This patchset implements RFC v4 of V4L2 API for flash devices [1], with > minor modifications, and adds the adp1653 flash controller driver. As already answered in private: Acked-by: Sakari Ailus > This patchset depend

AUTO: Ben Ellis is out of the office (returning 05/27/2011)

2011-05-19 Thread ben . ellis
I am out of the office until 05/27/2011. For urgent matters please contact Peter Hine on 02 6243 8668 or peter.h...@familycourt.gov.au Note: This is an automated response to your message "Re: [linux-dvb] Technisat Cablestar HD2 not automatically detected by kernel > 2.6.33?" sent on 19/5/2011

FW: FW: OMAP 3 ISP

2011-05-19 Thread Alex Gershgorin
t iki dot fi __ Information from ESET NOD32 Antivirus, version of virus signature database 6134 (20110519) __ The message was checked by ESET NOD32 Antivirus. http://www.eset.com __ Information from ESET NOD32 Antivirus, version of virus signature database 6134 (2011

RE: Audio Video synchronization for data received from a HDMI receiver chip

2011-05-19 Thread Hans Verkuil
>> > Hi Hans, >> > >> > I have another doubt regarding the framework choice for the entire >> > system that I have, especially the video part of the system. The >> overall >> > system is similar to the one depicted below: >> > >> > HDMI data --> HDMI receiver chip --> Video Port IP on SoC --> Syste

RE: Audio Video synchronization for data received from a HDMI receiver chip

2011-05-19 Thread Bhupesh SHARMA
> > Hi Hans, > > > > I have another doubt regarding the framework choice for the entire > > system that I have, especially the video part of the system. The > overall > > system is similar to the one depicted below: > > > > HDMI data --> HDMI receiver chip --> Video Port IP on SoC --> System > DDR

Re: [PATCH 2/2] mt9m111: fix pixel clock

2011-05-19 Thread Teresa Gamez
Am Mittwoch, den 18.05.2011, 13:12 +0200 schrieb Guennadi Liakhovetski: > Hi Teresa > > I've verified the mt9v022 patch - finally I have noticed the difference, > it does look correct! As for this one, how about this version of your > patch: Great! Thank you. > > diff --git a/drivers/media/vi

Re: Summary of the V4L2 discussions during LDS - was: Re: Embedded Linux memory management interest group list

2011-05-19 Thread Mauro Carvalho Chehab
Em 18-05-2011 16:46, Sakari Ailus escreveu: > Hans Verkuil wrote: >> Note that many video receivers cannot stall. You can't tell them to wait >> until >> the last buffer finished processing. This is different from some/most? >> sensors. > > Not even image sensors. They just output the frame data

[PATCH 2/3] v4l: Add flash control documentation

2011-05-19 Thread Sakari Ailus
Add documentation for V4L2 flash controls. Signed-off-by: Sakari Ailus --- Documentation/DocBook/v4l/controls.xml | 275 ++ Documentation/DocBook/v4l/vidioc-g-ext-ctrls.xml |7 + 2 files changed, 282 insertions(+), 0 deletions(-) diff --git a/Documentation/Doc

[PATCH 1/3] v4l: Add a class and a set of controls for flash devices.

2011-05-19 Thread Sakari Ailus
From: Sakari Ailus Add a control class and a set of controls to support LED and Xenon flash devices. An example of such a device is the adp1653. Signed-off-by: Sakari Ailus --- drivers/media/video/v4l2-ctrls.c | 45 ++ include/linux/videodev2.h|

[PATCH 3/3] adp1653: Add driver for LED flash controller

2011-05-19 Thread Sakari Ailus
This patch adds the driver for the adp1653 LED flash controller. This controller supports a high power led in flash and torch modes and an indicator light, sometimes also called privacy light. The adp1653 is used on the Nokia N900. Signed-off-by: Sakari Ailus Signed-off-by: Tuukka Toivonen Sign

[PATCH 0/3] V4L2 API for flash devices and the adp1653 flash controller driver

2011-05-19 Thread Sakari Ailus
Hi, This patchset implements RFC v4 of V4L2 API for flash devices [1], with minor modifications, and adds the adp1653 flash controller driver. This patchset depends on the bitmask controls patch [4]. Changes since v2 [3] of the RFC patchset: - Improved flash control documentation in general.

[PATCHES] Various MODULE parameter releated fixes

2011-05-19 Thread Hans Petter Selasky
--HPS From 0e135fa9cd9cb377bd8930253a547d6d9ae6d01b Mon Sep 17 00:00:00 2001 From: Hans Petter Selasky Date: Thu, 19 May 2011 02:46:40 +0200 Subject: [PATCH] Parameter description should be after parameter. --- ../media_tree/drivers/media/video/tda7432.c |2 +- 1 files changed, 1 insertions(

[RFC] Make dvb_net.c optional

2011-05-19 Thread Hans Petter Selasky
Hi, In my setup I am building the DVB code without dvb_net.c, because there is no IP-stack currently in my "Linux kernel". Is this worth a separate configuration entry? --HPS From e7fe34933638e882e1ed1eab1761ecd14ef9125e Mon Sep 17 00:00:00 2001 From: Hans Petter Selasky Date: Thu, 19 May 2011

Re: [RFC v4] V4L2 API for flash devices

2011-05-19 Thread Sakari Ailus
Sylwester Nawrocki wrote: > Hi Sakari, Hi Sylwester, > On 05/17/2011 10:34 PM, Sakari Ailus wrote: >> Sylwester Nawrocki wrote: >>> On 05/09/2011 12:11 AM, Sakari Ailus wrote: Sylwester Nawrocki wrote: > On 05/07/2011 02:46 PM, Hans Verkuil wrote: >> On Thursday, May 05, 2011 20:49:2