Re: Why is the Y12 support 12-bit grey formats at the CCDC input (Y12) is truncated to Y10 at the CCDC output?

2011-12-15 Thread Michael Jones
Hi James, On 12/15/2011 08:14 AM, James wrote: Hi all, I'm using an OMAP3530 board and a monochrome 12-bit grey sensor. Can anyone enlighten me why is the 12-bit grey formats at the CCDC input (Y12) is truncated to Y10 at the CCDC output? There are 2 CCDC outputs: CCDC_PAD_SOURCE_OF and

Re: Hauppauge HVR-930C problems

2011-12-15 Thread Fredrik Lingvall
On 12/14/11 17:33, Mihai Dobrescu wrote: Hello, I need to make my tunner working too. Did you make it work? Where did you get the firmware (dvb-usb-hauppauge-hvr930c-drxk.fw)? I have Sabayon 7 64 bit, which is sort of Gentoo, as I've seen you have. Thank you. Hi Mihai, There is a perl script

Re: [PATCH 1/15] module_param: check type correctness for module_param_array

2011-12-15 Thread Mauro Carvalho Chehab
On 15-12-2011 01:00, Rusty Russell wrote: module_param_array(), unlike its non-array cousins, didn't check the type of the variable. Fixing this found two bugs. Cc: Luca Risolia luca.riso...@studio.unibo.it Cc: Mauro Carvalho Chehab mche...@infradead.org Cc: Eric Piel

Re: [patch -longterm] V4L/DVB: v4l2-ioctl: integer overflow in video_usercopy()

2011-12-15 Thread Mauro Carvalho Chehab
On 15-12-2011 04:34, Dan Carpenter wrote: On a 32bit system the multiplication here could overflow. p-count is used in some of the V4L drivers. ULONG_MAX / sizeof(v4l2_ext_control) is too much. This ioctl is used on things like setting MPEG paramenters, where several parameters need

Re: [patch -longterm] V4L/DVB: v4l2-ioctl: integer overflow in video_usercopy()

2011-12-15 Thread Hans Verkuil
On Thursday, December 15, 2011 10:21:41 Mauro Carvalho Chehab wrote: On 15-12-2011 04:34, Dan Carpenter wrote: On a 32bit system the multiplication here could overflow. p-count is used in some of the V4L drivers. ULONG_MAX / sizeof(v4l2_ext_control) is too much. This ioctl is used on

[PATCH 1/2] media: tvp5150 Fix default input selection.

2011-12-15 Thread Javier Martin
In page 23 of the datasheet of this chip (SLES098A) it is stated that de default input for this chip is Composite AIP1A which is the same as COMPOSITE0 in the driver. Signed-off-by: Javier Martin javier.mar...@vista-silicon.com --- drivers/media/video/tvp5150.c |2 +- 1 files changed, 1

[PATCH 2/2] media: tvp5150: Add mbus_fmt callbacks.

2011-12-15 Thread Javier Martin
These callbacks allow a host video driver to poll video supported video formats of tvp5150. Signed-off-by: Javier Martin javier.mar...@vista-silicon.com --- drivers/media/video/tvp5150.c | 72 + 1 files changed, 72 insertions(+), 0 deletions(-) diff

[RFCv3 PATCH 0/3] Add per-device-node capabilities

2011-12-15 Thread Hans Verkuil
Hi Mauro, This patch series adds support for per-device capabilities. All comments from the previous RFC PATCH series: http://comments.gmane.org/gmane.linux.drivers.video-input-infrastructure/40688 have been incorporated and the documentation has been updated. The only file changed since the

[RFCv3 PATCH 2/3] vivi: set device_caps.

2011-12-15 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/video/vivi.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/media/video/vivi.c b/drivers/media/video/vivi.c index 7d754fb..84ea88d 100644 ---

[RFCv3 PATCH 3/3] ivtv: setup per-device caps.

2011-12-15 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/video/ivtv/ivtv-driver.h |1 + drivers/media/video/ivtv/ivtv-ioctl.c |7 +-- drivers/media/video/ivtv/ivtv-streams.c | 14 ++ 3 files changed, 20

[RFCv3 PATCH 1/3] V4L2: Add per-device-node capabilities

2011-12-15 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com If V4L2_CAP_DEVICE_CAPS is set, then the new device_caps field is filled with the capabilities of the opened device node. The capabilities field traditionally contains the capabilities of the physical device, being a superset of all capabilities

v4l: How bridge driver get subdev std?

2011-12-15 Thread Scott Jiang
Hi Hans and Guennadi, I'm wondering how does bridge driver get subdev std (not query)? My case is that bridge needs to get subdev default std. Regards, Scott -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More

Re: Why is the Y12 support 12-bit grey formats at the CCDC input (Y12) is truncated to Y10 at the CCDC output?

2011-12-15 Thread James
Hi Michael, On Thu, Dec 15, 2011 at 3:58 PM, Michael Jones michael.jo...@matrix-vision.de wrote: Hi James, On 12/15/2011 08:14 AM, James wrote: Hi all, I'm using an OMAP3530 board and a monochrome 12-bit grey sensor. Can anyone enlighten me why is the 12-bit grey formats at the CCDC

[RFC 0/4] OMAP 3 ISP driver improvements

2011-12-15 Thread Sakari Ailus
Hi all, This patchset removes two of the three callbacks in the OMAP 3 ISP driver's board code. It is dependent on first and third patch in the [RFC] On controlling sensors patchset: URL:http://www.spinics.net/lists/linux-media/msg40861.html What will be left is the external clock, which

Re: [patch -longterm] V4L/DVB: v4l2-ioctl: integer overflow in video_usercopy()

2011-12-15 Thread Mauro Carvalho Chehab
On 15-12-2011 07:33, Hans Verkuil wrote: On Thursday, December 15, 2011 10:21:41 Mauro Carvalho Chehab wrote: On 15-12-2011 04:34, Dan Carpenter wrote: On a 32bit system the multiplication here could overflow. p-count is used in some of the V4L drivers. ULONG_MAX / sizeof(v4l2_ext_control)

[RFC 1/4] omap3isp: Implement validate_pipeline

2011-12-15 Thread Sakari Ailus
Validate pipeline of any external entity connected to the ISP driver. The validation of the pipeline for the part that involves links inside the domain of another driver must be done by that very driver. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi --- drivers/media/video/omap3isp/ispvideo.c

[RFC 4/4] omap3isp: Use pixel clock from sensor media bus frameformat

2011-12-15 Thread Sakari Ailus
Configure the ISP based on the pixel clock in media bus frame format. Previously the same was configured from the board code. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi --- drivers/media/video/omap3isp/isp.c |3 +-- drivers/media/video/omap3isp/isp.h |3 ++-

[RFC 2/4] omap3isp: Add lane configuration to platform data

2011-12-15 Thread Sakari Ailus
Add lane configuration (order of clock and data lane) to platform data on both CCP2 and CSI-2. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi --- drivers/media/video/omap3isp/ispcsiphy.h | 15 ++- include/media/omap3isp.h | 15 +++ 2 files changed, 17

[RFC 3/4] omap3isp: Configure CSI-2 phy based on platform data

2011-12-15 Thread Sakari Ailus
Configure CSI-2 phy based on platform data in the ISP driver rather than in platform code. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi --- drivers/media/video/omap3isp/isp.h |3 - drivers/media/video/omap3isp/ispcsiphy.c | 95 ++---

Re: Hauppauge HVR-930C problems

2011-12-15 Thread Mauro Carvalho Chehab
On 15-12-2011 06:04, Fredrik Lingvall wrote: On 12/14/11 17:33, Mihai Dobrescu wrote: Hello, I need to make my tunner working too. Did you make it work? Where did you get the firmware (dvb-usb-hauppauge-hvr930c-drxk.fw)? I have Sabayon 7 64 bit, which is sort of Gentoo, as I've seen you

Re: v4l: How bridge driver get subdev std?

2011-12-15 Thread Hans Verkuil
On Thursday, December 15, 2011 10:48:39 Scott Jiang wrote: Hi Hans and Guennadi, I'm wondering how does bridge driver get subdev std (not query)? My case is that bridge needs to get subdev default std. It can just call the core g_std op. Note that g_std was added only recently (September 9th

Re: [PATCH 2/2] media: tvp5150: Add mbus_fmt callbacks.

2011-12-15 Thread Mauro Carvalho Chehab
On 15-12-2011 07:39, Javier Martin wrote: These callbacks allow a host video driver to poll video supported video formats of tvp5150. Signed-off-by: Javier Martin javier.mar...@vista-silicon.com --- drivers/media/video/tvp5150.c | 72 + 1 files

RE: [PATCH v3 2/2] [media] V4L: atmel-isi: add clk_prepare()/clk_unprepare() functions

2011-12-15 Thread Wu, Josh
Hi, Guennadi Would you acknowledge these two v3 patches and queue them for 3.3 merge window? Thanks. Best Regards, Josh Wu On Thursday, December 08, 2011 6:19 PM, Josh Wu wrote: Signed-off-by: Josh Wu josh...@atmel.com --- in v2 version, made the label name to be consistent

Re: v4l: How bridge driver get subdev std?

2011-12-15 Thread Scott Jiang
2011/12/15 Hans Verkuil hverk...@xs4all.nl: On Thursday, December 15, 2011 10:48:39 Scott Jiang wrote: Hi Hans and Guennadi, I'm wondering how does bridge driver get subdev std (not query)? My case is that bridge needs to get subdev default std. It can just call the core g_std op. Note that

Re: Why is the Y12 support 12-bit grey formats at the CCDC input (Y12) is truncated to Y10 at the CCDC output?

2011-12-15 Thread Michael Jones
Hi James, On 12/15/2011 10:49 AM, James wrote: Hi Michael, On Thu, Dec 15, 2011 at 3:58 PM, Michael Jones michael.jo...@matrix-vision.de wrote: Hi James, On 12/15/2011 08:14 AM, James wrote: Hi all, I'm using an OMAP3530 board and a monochrome 12-bit grey sensor. Can anyone enlighten

Re: [PATCH 1/2] media: tvp5150 Fix default input selection.

2011-12-15 Thread Mauro Carvalho Chehab
On 15-12-2011 07:39, Javier Martin wrote: In page 23 of the datasheet of this chip (SLES098A) it is stated that de default input for this chip is Composite AIP1A which is the same as COMPOSITE0 in the driver. Signed-off-by: Javier Martin javier.mar...@vista-silicon.com ---

Re: [PATCH 2/2] media: tvp5150: Add mbus_fmt callbacks.

2011-12-15 Thread javier Martin
Hi Mauro, thank you for your review, I will prepare a new version with those fixes. -- Javier Martin Vista Silicon S.L. CDTUC - FASE C - Oficina S-345 Avda de los Castros s/n 39005- Santander. Cantabria. Spain +34 942 25 32 60 www.vista-silicon.com -- To unsubscribe from this list: send the line

[PATCHv5] v4l: Update subdev drivers to handle framesamples parameter

2011-12-15 Thread Sylwester Nawrocki
Update the sub-device drivers having a devnode enabled so they properly handle the new framesamples field of struct v4l2_mbus_framefmt. These drivers don't support compressed (entropy encoded) formats so the framesamples field is simply initialized to 0, altogether with the reserved field. There

Re: [PATCH v3] arm: omap3evm: Add support for an MT9M032 based camera board.

2011-12-15 Thread Igor Grinberg
On 12/14/11 20:14, mar...@neutronstar.dyndns.org wrote: On Wed, Dec 14, 2011 at 11:31:35AM +0200, Igor Grinberg wrote: Hi Martin, On 12/14/11 03:25, Martin Hostettler wrote: Adds board support for an MT9M032 based camera to omap3evm. Signed-off-by: Martin Hostettler

Re: [RFC 1/4] omap3isp: Implement validate_pipeline

2011-12-15 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Thursday 15 December 2011 10:50:32 Sakari Ailus wrote: Validate pipeline of any external entity connected to the ISP driver. The validation of the pipeline for the part that involves links inside the domain of another driver must be done by that very

Re: [PATCH 1/2] media: tvp5150 Fix default input selection.

2011-12-15 Thread javier Martin
Changing this could break em28xx that might be expecting it to be set to composite1. On a quick look, the code there seems to be doing the right thing: during the probe procedure, it explicitly calls s_routing, in order to initialize the device input to the first input type found at the cards

Re: [RFC 3/4] omap3isp: Configure CSI-2 phy based on platform data

2011-12-15 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Thursday 15 December 2011 10:50:34 Sakari Ailus wrote: Configure CSI-2 phy based on platform data in the ISP driver rather than in platform code. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi --- drivers/media/video/omap3isp/isp.h |3 -

Re: [RFC 4/4] omap3isp: Use pixel clock from sensor media bus frameformat

2011-12-15 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Thursday 15 December 2011 10:50:35 Sakari Ailus wrote: Configure the ISP based on the pixel clock in media bus frame format. Previously the same was configured from the board code. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi ---

Re: [GIT PULL FOR v3.3] Media, OMAP3 ISP AS3645A

2011-12-15 Thread Laurent Pinchart
Hi Mauro, On Tuesday 13 December 2011 02:43:27 Laurent Pinchart wrote: Hi Mauro, The following changes since commit bcc072756e4467dc30e502a311b1c3adec96a0e4: [media] STV0900: Query DVB frontend delivery capabilities (2011-12-12 15:04:34 -0200) are available in the git repository at:

problems with mythtv and pvr-350

2011-12-15 Thread Simon Kenyon
changing channel stopped working ages ago (5-6 months). i assumed that it was a bug in myth. now i am wondering. as far as i can see, mytht pauses the device when changing channel. but somewhere along the way it chokes when unpausing (poll errors). i notice that hans made some changes in this

Re: [PATCH 1/2] media: tvp5150 Fix default input selection.

2011-12-15 Thread Mauro Carvalho Chehab
On 15-12-2011 08:24, javier Martin wrote: Changing this could break em28xx that might be expecting it to be set to composite1. On a quick look, the code there seems to be doing the right thing: during the probe procedure, it explicitly calls s_routing, in order to initialize the device input

Re: [RFC 3/4] omap3isp: Configure CSI-2 phy based on platform data

2011-12-15 Thread Sakari Ailus
Hi Laurent, Thanks for the review! On Thu, Dec 15, 2011 at 11:28:06AM +0100, Laurent Pinchart wrote: Hi Sakari, Thanks for the patch. On Thursday 15 December 2011 10:50:34 Sakari Ailus wrote: Configure CSI-2 phy based on platform data in the ISP driver rather than in platform code.

Re: [RFC 1/4] omap3isp: Implement validate_pipeline

2011-12-15 Thread Sakari Ailus
Hi Laurent, Thanks for the review!!! On Thu, Dec 15, 2011 at 11:18:53AM +0100, Laurent Pinchart wrote: Hi Sakari, Thanks for the patch. On Thursday 15 December 2011 10:50:32 Sakari Ailus wrote: Validate pipeline of any external entity connected to the ISP driver. The validation of the

Re: [PATCH 1/2] media: tvp5150 Fix default input selection.

2011-12-15 Thread javier Martin
The mx2_camera needs some code to forward calls to S_INPUT/S_ROUTING to tvp5150, in order to set the pipelines there. This sounds like a sensible solution I will work on that soon. Regards. -- Javier Martin Vista Silicon S.L. CDTUC - FASE C - Oficina S-345 Avda de los Castros s/n 39005-

Re: [PATCH v3] arm: omap3evm: Add support for an MT9M032 based camera board.

2011-12-15 Thread Laurent Pinchart
Hi Martin, On Wednesday 14 December 2011 19:22:29 mar...@neutronstar.dyndns.org wrote: On Wed, Dec 14, 2011 at 02:15:22PM +0100, Laurent Pinchart wrote: On Wednesday 14 December 2011 10:31:35 Igor Grinberg wrote: On 12/14/11 03:25, Martin Hostettler wrote: Adds board support for an

[PATCH v6 01/11] davinci: vpif: remove obsolete header file inclusion

2011-12-15 Thread Manjunath Hadli
remove inclusion of header files from vpif.h and vpif_dispaly.c and add appropriate header file for building. Signed-off-by: Manjunath Hadli manjunath.ha...@ti.com Cc: Mauro Carvalho Chehab mche...@infradead.org Cc: LMML linux-media@vger.kernel.org --- drivers/media/video/davinci/vpif.h

[PATCH 0/2] add dm365 specific media formats

2011-12-15 Thread Manjunath Hadli
add mediabus formats and pixel formats suported as part of dm365 vpfe device. The device supports media formats(transfer and storage) which include - 1. ALAW compressed bayer. 2. UV interleaved without Y( for resizer) 3. NV12 Manjunath Hadli (2): media: add new mediabus format enums for dm365

[PATCH 2/2] v4l2: add new pixel formats supported on dm365

2011-12-15 Thread Manjunath Hadli
add new macro V4L2_PIX_FMT_SGRBG10ALAW8 to represent Bayer format frames compressed by A-LAW alogorithm. add V4L2_PIX_FMT_UV8 to represent storage of C (UV interleved) only. Signed-off-by: Manjunath Hadli manjunath.ha...@ti.com Cc: Laurent Pinchart laurent.pinch...@ideasonboard.com ---

[PATCH 1/2] media: add new mediabus format enums for dm365

2011-12-15 Thread Manjunath Hadli
add new enum entry V4L2_MBUS_FMT_SGRBG10_ALAW8_1X8 into mbus_pixel_code to represent A-LAW compressed Bayer format. This corresponds to pixel format - V4L2_PIX_FMT_SGRBG10ALAW8. add UV8 and NV12 ( Y and C separate with UV interleaved) which are supported on dm365. Signed-off-by: Manjunath Hadli

Re: [PATCH 1/2] media: tvp5150 Fix default input selection.

2011-12-15 Thread javier Martin
On 15 December 2011 13:01, javier Martin javier.mar...@vista-silicon.com wrote: The mx2_camera needs some code to forward calls to S_INPUT/S_ROUTING to tvp5150, in order to set the pipelines there. This sounds like a sensible solution I will work on that soon. Hi Mauro, regarding this

Re: [RFC 3/4] omap3isp: Configure CSI-2 phy based on platform data

2011-12-15 Thread Laurent Pinchart
Hi Sakari, On Thursday 15 December 2011 12:53:03 Sakari Ailus wrote: On Thu, Dec 15, 2011 at 11:28:06AM +0100, Laurent Pinchart wrote: On Thursday 15 December 2011 10:50:34 Sakari Ailus wrote: Configure CSI-2 phy based on platform data in the ISP driver rather than in platform code.

Re: [PATCH 2/2] v4l2: add new pixel formats supported on dm365

2011-12-15 Thread Laurent Pinchart
Hi Manjunath, Thanks for the patch. On Thursday 15 December 2011 13:24:58 Manjunath Hadli wrote: add new macro V4L2_PIX_FMT_SGRBG10ALAW8 to represent Bayer format frames compressed by A-LAW alogorithm. add V4L2_PIX_FMT_UV8 to represent storage of C (UV interleved) only. Signed-off-by:

Re: [PATCH 1/2] media: add new mediabus format enums for dm365

2011-12-15 Thread Laurent Pinchart
Hi Manhunath, Thanks for the patch. On Thursday 15 December 2011 13:24:57 Manjunath Hadli wrote: add new enum entry V4L2_MBUS_FMT_SGRBG10_ALAW8_1X8 into mbus_pixel_code to represent A-LAW compressed Bayer format. This corresponds to pixel format - V4L2_PIX_FMT_SGRBG10ALAW8. add UV8 and NV12

[PATCH] media: tvp5150: Add mbus_fmt callbacks.

2011-12-15 Thread Javier Martin
These callbacks allow a host video driver to poll video formats supported by tvp5150. --- Changes since v1: Fix standard handling in tvp5150_mbus_fmt() Signed-off-by: Javier Martin javier.mar...@vista-silicon.com --- drivers/media/video/tvp5150.c | 67

[RFCv3 PATCH 1/8] v4l2: add VIDIOC_(TRY_)DECODER_CMD.

2011-12-15 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com As discussed during the 2011 V4L-DVB workshop, the API in dvb/video.h should be replaced by a proper V4L2 API. This patch turns the VIDEO_(TRY_)DECODER_CMD ioctls into proper V4L2 ioctls. Signed-off-by: Hans Verkuil hans.verk...@cisco.com ---

[RFCv3 PATCH 2/8] v4l spec: document VIDIOC_(TRY_)DECODER_CMD.

2011-12-15 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- Documentation/DocBook/media/v4l/v4l2.xml |1 + .../DocBook/media/v4l/vidioc-decoder-cmd.xml | 256 .../DocBook/media/v4l/vidioc-encoder-cmd.xml |9

[RFCv3 PATCH 3/8] ivtv: implement new decoder command ioctls.

2011-12-15 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/video/ivtv/ivtv-driver.c |2 +- drivers/media/video/ivtv/ivtv-fileops.c |2 +- drivers/media/video/ivtv/ivtv-ioctl.c | 106 +++---

[RFCv3 PATCH 0/8] Add decoder API to V4L2

2011-12-15 Thread Hans Verkuil
This is the third version of the new decoder API. The second version is here: http://www.spinics.net/lists/linux-media/msg40474.html The main changes are: - The DVB API is left untouched. So this series only makes changes to the V4L2 subsystem. DVB is just too depressing to propose any

[RFCv3 PATCH 5/8] Document decoder controls.

2011-12-15 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- Documentation/DocBook/media/v4l/controls.xml | 59 ++ 1 files changed, 59 insertions(+), 0 deletions(-) diff --git a/Documentation/DocBook/media/v4l/controls.xml

[RFCv3 PATCH 7/8] cx18/ddbridge: remove unused headers.

2011-12-15 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com The cx18 and ddbridge drivers include linux/dvb/audio.h and video.h without using them. Remove those includes. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/dvb/ddbridge/ddbridge.h |2 --

[RFCv3 PATCH 6/8] ivtv: implement new decoder controls.

2011-12-15 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/video/ivtv/ivtv-controls.c | 62 +++ drivers/media/video/ivtv/ivtv-controls.h |2 + drivers/media/video/ivtv/ivtv-driver.c | 35 +++-

[RFCv3 PATCH 4/8] v4l2-ctrls: add new controls for MPEG decoder devices.

2011-12-15 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com As discussed during the 2011 V4L-DVB workshop we want to create a proper V4L2 decoder API that replaces the DVBv5 API that has been used until now. This adds the four controls necessary to be able to switch ivtv over to this new API. Signed-off-by: Hans

[RFCv3 PATCH 8/8] ivtv: add IVTV_IOC_PASSTHROUGH_MODE.

2011-12-15 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com With this private ioctl it is possible to use the ivtv decoder without requiring the dvb/video.h and dvb/audio.h headers. Eventually support for those DVB APIs will be dropped from ivtv. Signed-off-by: Hans Verkuil hans.verk...@cisco.com ---

[GIT PATCHES FOR 3.3] Alpha colour control addition

2011-12-15 Thread Sylwester Nawrocki
Hello Mauro, The following changes since commit c8c59cb5c459ff71f0592dc0716cdc2e730b20e5: s5p-fimc: Prevent lock up caused by incomplete H/W initialization (2011-12-14 16:02:32 +0100) are available in the git repository at: git://git.infradead.org/users/kmpark/linux-samsung v4l_rgb_alpha

[PATCH] media: vb2: remove plane argument from call_memop and cleanup mempriv usage

2011-12-15 Thread Marek Szyprowski
This patch removes unused 'plane' argument from call_memop macro. Signed-off-by: Marek Szyprowski m.szyprow...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com CC: Pawel Osciak pa...@osciak.com --- drivers/media/video/videobuf2-core.c | 22 ++ 1 files

[PATCH] media: vb2: review mem_priv usage and fix potential bugs

2011-12-15 Thread Marek Szyprowski
This patch is a result of review of mem_priv entry usage in videobuf2 core. It fixes all all potential places where it was not checked against NULL or zeroed after freeing as well as a few style issues. Signed-off-by: Marek Szyprowski m.szyprow...@samsung.com Signed-off-by: Kyungmin Park

[PATCH] media: vb2: vmalloc-based allocator user pointer handling

2011-12-15 Thread Marek Szyprowski
From: Andrzej Pietrasiewicz andrze...@samsung.com This patch adds support for user pointer memory buffers to vmalloc videobuf2 allocator. Signed-off-by: Andrzej Pietrasiewicz andrze...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com Signed-off-by: Marek Szyprowski

Re: [PATCH] it913x add support for IT9135 9006 devices

2011-12-15 Thread Adrian N
W dniu 2011-12-14 07:13, Adeq pisze: Malcolm Priestleytvboxspyat gmail.com writes: Support for IT1935 9006 devices. 9006 have version 2 type chip. 9006 devices should use dvb-usb-it9135-02.fw firmware. On the device tested the tuner id was set to 0 which meant the driver used tuner id

Trying to figure out reasons for lost pictures in UVC driver.

2011-12-15 Thread javier Martin
Hi, we are testing a logitech Webcam M/N: V-U0012 in the UVC tree (commit ef7728797039bb6a20f22cc2d96ef72d9338cba0). It is configured at 25fps, VGA. We've observed that the following debugging message appears sometimes Frame complete (FID bit toggled).. Whenever this happens a v4l2 frame is lost

Re: [PATCH 1/2] media: tvp5150 Fix default input selection.

2011-12-15 Thread Mauro Carvalho Chehab
On 15-12-2011 10:33, javier Martin wrote: On 15 December 2011 13:01, javier Martin javier.mar...@vista-silicon.com wrote: The mx2_camera needs some code to forward calls to S_INPUT/S_ROUTING to tvp5150, in order to set the pipelines there. This sounds like a sensible solution I will work on

GrabBeeX - empia 2800 USB 2.0 - problem

2011-12-15 Thread Adrian Sergiu DARABANT
Hi, I've got these kind of old usb 2.0 grabbers (GrabBeex) based on some em28xx chipsets that are not correctly identified under linux. Here is the dmesg log. A video device is created but there are no controls in v4l-info and dmesg seems to see that everything is probably not correctly

Re: [PATCH] it913x add support for IT9135 9006 devices

2011-12-15 Thread Malcolm Priestley
[ 1103.536156] it913x: Chip Version=ec Chip Type=5830 [ 1104.336178] it913x: Dual mode=92 Remote=92 Tuner Type=92 [ 1106.248116] dvb-usb: found a 'ITE 9135(9006) Generic' in cold state, will try to load a firmware [ 1106.253773] dvb-usb: downloading firmware from file

cron job: media_tree daily build: ERRORS

2011-12-15 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:Thu Dec 15 19:00:16 CET 2011 git hash:bcc072756e4467dc30e502a311b1c3adec96a0e4 gcc version: i686-linux-gcc

[PATCH] Add support to OmniVision Technologies, Inc. VEHO Filmscanner (omnivision 550)

2011-12-15 Thread Jose Alberto Reguero
This path add support to OmniVision Technologies, Inc. VEHO Filmscanner. Signed-off-by: Jose Alberto Reguero jaregu...@telefonica.net Jose Alberto diff -ur linux/drivers/media/video/gspca/ov534_9.c linux.new/drivers/media/video/gspca/ov534_9.c --- linux/drivers/media/video/gspca/ov534_9.c

Re: [RFC 1/3] v4l: Add pixel clock to struct v4l2_mbus_framefmt

2011-12-15 Thread Sylwester Nawrocki
Hi Sakari, thanks for the patch. On 12/14/2011 04:22 PM, Sakari Ailus wrote: Pixel clock is an essential part of the image data parameters. Add this. Together, the current parameters also define the frame rate. Sensors do not have a concept of frame rate; pixel clock is much more

Re: [RFC 3/4] omap3isp: Configure CSI-2 phy based on platform data

2011-12-15 Thread Sakari Ailus
Hi Laurent, On Thu, Dec 15, 2011 at 01:54:52PM +0100, Laurent Pinchart wrote: Hi Sakari, On Thursday 15 December 2011 12:53:03 Sakari Ailus wrote: On Thu, Dec 15, 2011 at 11:28:06AM +0100, Laurent Pinchart wrote: On Thursday 15 December 2011 10:50:34 Sakari Ailus wrote: Configure

Re: [RFC 1/3] v4l: Add pixel clock to struct v4l2_mbus_framefmt

2011-12-15 Thread Sakari Ailus
Hi Sylwester, Thanks for the comments! On Thu, Dec 15, 2011 at 10:46:22PM +0100, Sylwester Nawrocki wrote: Hi Sakari, thanks for the patch. On 12/14/2011 04:22 PM, Sakari Ailus wrote: Pixel clock is an essential part of the image data parameters. Add this. Together, the current

Re: [RFC 1/3] v4l: Add pixel clock to struct v4l2_mbus_framefmt

2011-12-15 Thread Sylwester Nawrocki
On 12/15/2011 11:01 PM, Sakari Ailus wrote: entry__u32/entry - entrystructfieldreserved/structfield[7]/entry + entrystructfieldpixel_clock/structfield/entry + entryPixel clock in kHz. This clock is the maximum rate at + which pixels are transferred on the bus. The

[PATCH] it913x changed firmware loader for chip version 2 types

2011-12-15 Thread Malcolm Priestley
On Thu, 2011-12-15 at 16:42 +, Malcolm Priestley wrote: [ 1103.536156] it913x: Chip Version=ec Chip Type=5830 [ 1104.336178] it913x: Dual mode=92 Remote=92 Tuner Type=92 [ 1106.248116] dvb-usb: found a 'ITE 9135(9006) Generic' in cold state, will try to load a firmware [

Re: Why is the Y12 support 12-bit grey formats at the CCDC input (Y12) is truncated to Y10 at the CCDC output?

2011-12-15 Thread James
Hi Michael, On Thu, Dec 15, 2011 at 6:10 PM, Michael Jones michael.jo...@matrix-vision.de wrote: Hi James, On 12/15/2011 10:49 AM, James wrote: Hi Michael, On Thu, Dec 15, 2011 at 3:58 PM, Michael Jones michael.jo...@matrix-vision.de  wrote: Hi James, On 12/15/2011 08:14 AM, James

LME2510 Sharp 0194A DVB-S

2011-12-15 Thread Andrew Congdon
I have a DM04 DVB-S USB box which doesn't seem to be supported with the kernel 3.x dvb-usb-lmedm04 driver although it seems very close. The firmware is loaded the tuner seems to be identified but it fails to attach the tuner? It has a LME2510 chip and the tuner has Sharp F7HZ0194A on it. This is

Re: [RFC PATCH v2 1/8] omap4: introduce fdif(face detect module) hwmod

2011-12-15 Thread Paul Walmsley
Hi Benoît On Wed, 14 Dec 2011, Ming Lei wrote: Signed-off-by: Ming Lei ming@canonical.com --- arch/arm/mach-omap2/omap_hwmod_44xx_data.c | 81 1 files changed, 81 insertions(+), 0 deletions(-) any comments on this patch? I'd like to queue it if it

Re: LME2510 Sharp 0194A DVB-S

2011-12-15 Thread Malcolm Priestley
On Fri, 2011-12-16 at 16:06 +1100, Andrew Congdon wrote: I have a DM04 DVB-S USB box which doesn't seem to be supported with the kernel 3.x dvb-usb-lmedm04 driver although it seems very close. The firmware is loaded the tuner seems to be identified but it fails to attach the tuner? It has a

Re: [RFC 1/3] v4l: Add pixel clock to struct v4l2_mbus_framefmt

2011-12-15 Thread Sakari Ailus
Hi Sylwester, On Thu, Dec 15, 2011 at 11:19:40PM +0100, Sylwester Nawrocki wrote: On 12/15/2011 11:01 PM, Sakari Ailus wrote: entry__u32/entry - entrystructfieldreserved/structfield[7]/entry + entrystructfieldpixel_clock/structfield/entry + entryPixel clock in kHz. This clock