Re: My Microdia (SN9C201) webcam doesn't work properly in Linux anymore

2012-03-05 Thread Hans de Goede
Hi, On 03/04/2012 10:58 PM, Xavion wrote: Hi Jean-Francois I can confirm that GSPCA v2.15.1 removes the bad pixels when I use Cheese or VLC. However, I'm sorry to report that the Motion problems unfortunately still remain. Is there something else I must do to overcome the below errors? I'm

Re: [bug?] ov519 fails to handle Hercules Deluxe webcam

2012-03-05 Thread Jean-Francois Moine
On Sun, 4 Mar 2012 18:38:01 -0600 Jonathan Nieder jrnie...@gmail.com wrote: Hi, Skippy le Grand Gourou wrote[1]: Hercules Deluxe USB webcam won't work, see the end of the kernel log. [...] [521041.808976] gspca: probing 05a9:4519 [521042.469094] ov519: I2C synced in 3 attempt(s)

Re: [bug?] ov519 fails to handle Hercules Deluxe webcam

2012-03-05 Thread Jonathan Nieder
Jean-Francois Moine wrote: Skippy le Grand Gourou wrote[1]: Hercules Deluxe USB webcam won't work, see the end of the kernel log. [...] [521041.808976] gspca: probing 05a9:4519 [521042.469094] ov519: I2C synced in 3 attempt(s) [521042.469097] ov519: starting OV7xx0 configuration

Re: [bug?] ov519 fails to handle Hercules Deluxe webcam

2012-03-05 Thread Jean-Francois Moine
On Mon, 5 Mar 2012 03:34:30 -0600 Jonathan Nieder jrnie...@gmail.com wrote: To be sure, try the gspca test version from my web site. Skippy, assuming that works (and I expect it would), could you try the attached patch against 2.6.32.y? It works like this: 0. Prerequisites:

Re: [bug?] ov519 fails to handle Hercules Deluxe webcam

2012-03-05 Thread Jonathan Nieder
Jean-Francois Moine wrote: Jonathan Nieder jrnie...@gmail.com wrote: To be sure, try the gspca test version from my web site. Skippy, assuming that works (and I expect it would), could you try the attached patch against 2.6.32.y? It works like this: [...] 1. Get the kernel, if you don't

Re: [PATCH 1/2] media: tvp5150: Add cropping support.

2012-03-05 Thread Enrico
On Fri, Mar 2, 2012 at 9:35 AM, javier Martin javier.mar...@vista-silicon.com wrote: Hi all, I've been using and testing these patches successfully for a month. Do you have any comments on them? Do you think they are ready to be merged? [PATCH 1/2] media: tvp5150: Add cropping support [PATCH

RE: [PATCH] media: media-dev: Add media devices for EXYNOS5

2012-03-05 Thread Sungchun Kang
Hi sylwester, On 03/01/2012 07:44 AM, Sylwester Nawrocki wrote: Hi Sungchun, On 02/15/2012 07:02 AM, Sungchun Kang wrote: Since the EXYNOS5 SoCs have various multimedia IPs such as Gscaler, FIMC-LITE, and MIXER, and so on. Additionally, media controller interface is needed to configure

Re: [PATCH v4 04/34] v4l: VIDIOC_SUBDEV_S_SELECTION and VIDIOC_SUBDEV_G_SELECTION IOCTLs

2012-03-05 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Friday 02 March 2012 19:30:12 Sakari Ailus wrote: Add support for VIDIOC_SUBDEV_S_SELECTION and VIDIOC_SUBDEV_G_SELECTION IOCTLs. They replace functionality provided by VIDIOC_SUBDEV_S_CROP and VIDIOC_SUBDEV_G_CROP IOCTLs and also add new functionality

Re: [PATCH v4 06/34] v4l: Check pad number in get try pointer functions

2012-03-05 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Friday 02 March 2012 19:30:14 Sakari Ailus wrote: Unify functions to get try pointers and validate the pad number accessed by the user. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi Acked-by: Laurent Pinchart laurent.pinch...@ideasonboard.com ---

Re: [PATCH v4 08/34] v4l: Add subdev selections documentation: svg and dia files

2012-03-05 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. This version is more readable. What about also making the red lines dotted/dashed ? -- Regards, Laurent Pinchart -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo info

Re: [PATCH v4 15/34] media: Add link_validate() op to check links to the sink pad

2012-03-05 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Friday 02 March 2012 19:30:23 Sakari Ailus wrote: The purpose of the link_validate() op is to allow an entity driver to ensure that the properties of the pads at the both ends of the link are suitable for starting the pipeline. link_validate is called on

Re: [PATCH v4 16/34] media: Collect entities that are part of the pipeline before link validation

2012-03-05 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Friday 02 March 2012 19:30:24 Sakari Ailus wrote: Make information available which entities are part of the pipeline before link_validate() ops are being called. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi --- drivers/media/media-entity.c | 23

Re: [PATCH v4 18/34] v4l: Implement v4l2_subdev_link_validate()

2012-03-05 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Friday 02 March 2012 19:30:26 Sakari Ailus wrote: v4l2_subdev_link_validate() is the default op for validating a link. In V4L2 subdev context, it is used to call a pad op which performs the proper link check without much extra work. Signed-off-by: Sakari

Re: [PATCH v4 23/34] omap3isp: Move setting constaints above media_entity_pipeline_start

2012-03-05 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Friday 02 March 2012 19:30:31 Sakari Ailus wrote: The clock rate for l3_ick is will soon be read during pipeline validation s/is will/will/ ? which is now part of media_entity_pipeline_start(). For that reason we set constraints earlier on.

Re: [PATCH v4 24/34] omap3isp: Assume media_entity_pipeline_start may fail

2012-03-05 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Friday 02 March 2012 19:30:32 Sakari Ailus wrote: Since media_entity_pipeline_start() now does link validation, it may actually fail. Perform the error handling. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi ---

Re: [PATCH v4 26/34] omap3isp: Add information on external subdev to struct isp_pipeline

2012-03-05 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Friday 02 March 2012 19:30:34 Sakari Ailus wrote: Add pointer to external subdev, pixel rate of the external subdev and bpp of the format to struct isp_pipeline. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi ---

Re: [PATCH v4 29/34] omap3isp: Default link validation for ccp2, csi2, preview and resizer

2012-03-05 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Friday 02 March 2012 19:30:37 Sakari Ailus wrote: Use default link validation for ccp2, csi2, preview and resizer. On ccp2, csi2 and ccdc we also collect information on external subdevs as one may be connected to those entities. Signed-off-by: Sakari

Re: [PATCH v4 34/34] rm680: Add camera init

2012-03-05 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Friday 02 March 2012 19:30:42 Sakari Ailus wrote: From: Sakari Ailus sakari.ai...@maxwell.research.nokia.com This currently introduces an extra file to the arch/arm/mach-omap2 directory: board-rm680-camera.c. Keeping the device tree in mind, the context

Re: [PATCH v4 09/34] v4l: Add subdev selections documentation

2012-03-05 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Friday 02 March 2012 19:30:17 Sakari Ailus wrote: Add documentation for V4L2 subdev selection API. This changes also experimental V4L2 subdev API so that scaling now works through selection API only. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi

Re: [RESEND] [PATCH] media: ir-sony-decoder: 15bit function decode fix

2012-03-05 Thread James Hogan
Ping Another week's gone by with no response. It's a trivial patch, so can somebody please take a look at it? (or if I'm missing somebody relevant from CC, please add them) Thanks James On 27/02/12 11:53, James Hogan wrote: The raw Sony IR decoder decodes 15bit messages slightly incorrectly.

Re: My Microdia (SN9C201) webcam doesn't work properly in Linux anymore

2012-03-05 Thread Jean-Francois Moine
On Mon, 05 Mar 2012 09:33:18 +0100 Hans de Goede hdego...@redhat.com wrote: I guess that motion is using the JPG compressed frames rather then the i420 like special format these cameras also support, and it looks like we don't reserve enoug space to buffer these frames. To fix this we need to

Re: [PATCH v3 09/10] v4l: Aptina-style sensor PLL support

2012-03-05 Thread Laurent Pinchart
Hi Andy, On Sunday 04 March 2012 21:38:54 Andy Walls wrote: On Sun, 2012-03-04 at 11:20 +0100, Laurent Pinchart wrote: On Saturday 03 March 2012 12:35:09 Andy Walls wrote: On Sat, 2012-03-03 at 16:28 +0100, Laurent Pinchart wrote: Add a generic helper function to compute PLL parameters

RE: [PATCH] media: jpeg: add driver for a version 2.x of jpeg H/W

2012-03-05 Thread Andrzej Pietrasiewicz
Hello송영목, In general I think the v2x support should be designed to require as little code changes as possible, and they should be related to pure hardware differences only. Please see comments inline. The tables (quantization, Huffman) logically contain mostly the same data both in v3 and v2x

Re: [RESEND] [PATCH] media: ir-sony-decoder: 15bit function decode fix

2012-03-05 Thread Trilok Soni
Hi James, On 3/5/2012 5:27 PM, James Hogan wrote: Ping Another week's gone by with no response. It's a trivial patch, so can somebody please take a look at it? (or if I'm missing somebody relevant from CC, please add them) You are not alone, GPIO IR patch is also in waiting mode...

Re: My Microdia (SN9C201) webcam doesn't work properly in Linux anymore

2012-03-05 Thread Hans de Goede
Hi, On 03/05/2012 01:03 PM, Jean-Francois Moine wrote: On Mon, 05 Mar 2012 09:33:18 +0100 Hans de Goedehdego...@redhat.com wrote: I guess that motion is using the JPG compressed frames rather then the i420 like special format these cameras also support, and it looks like we don't reserve

[PATCH] make mmap logs more readable.

2012-03-05 Thread Oleksij Rempel (Alexey Fisher)
From: Oleksij Rempel (Alexey Fisher) bug-tr...@fisher-privat.net Signed-off-by: Oleksij Rempel (Alexey Fisher) bug-tr...@fisher-privat.net --- lib/libv4l2/libv4l2.c | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/libv4l2/libv4l2.c b/lib/libv4l2/libv4l2.c

[PATCH]NEXT:drivers:staging:media Fix comments and some typos in staging/media/*

2012-03-05 Thread Justin P. Mattock
From: Justin P. Mattock justinmatt...@gmail.com linux-next: I like to spend some time reading code, in doing so I have found some typos in some of the comments. The patch below fixes what I have found. Signed-off-by: Justin P. Mattock justinmatt...@gmail.com --- drivers/staging/media/Kconfig

Re: [PATCH 3/3] wl128x: Add sysfs based support for FM features

2012-03-05 Thread halli manjunatha
On Fri, Mar 2, 2012 at 3:22 AM, Hans Verkuil hverk...@xs4all.nl wrote: On Wednesday, February 29, 2012 18:19:27 halli manjunatha wrote: On Wed, Feb 29, 2012 at 5:25 AM, Hans Verkuil hverk...@xs4all.nl wrote: On Tuesday, February 28, 2012 23:52:21 halli manjunatha wrote: On Tue, Feb 28, 2012

Re: [PATCH] media: s5p-tv: support mc framework

2012-03-05 Thread Tomasz Stanislawski
Hi Jiun Yu, Thanks for proposing this patch. I was considering moving V4L2 TV drivers to Media Controller framework. I am glad that this patch was posted. However, there are still some important issues. Please refer to the comments below. On 02/29/2012 12:03 PM, Jiun Yu wrote: From: Jiun

Re: [RESEND] [PATCH] media: ir-sony-decoder: 15bit function decode fix

2012-03-05 Thread Mauro Carvalho Chehab
Em 05-03-2012 11:32, Trilok Soni escreveu: Hi James, On 3/5/2012 5:27 PM, James Hogan wrote: Ping Another week's gone by with no response. It's a trivial patch, so can somebody please take a look at it? (or if I'm missing somebody relevant from CC, please add them) You are not alone,

[PATCH] media_build: fix snd_aci_* undefined warnings on kernels 2.6.33

2012-03-05 Thread Gianluca Gennari
WARNING: snd_aci_get_aci [/media/linux-common/experiment/media_build/v4l/radio-miropcm20.ko] undefined! WARNING: snd_aci_cmd [/media/linux-common/experiment/media_build/v4l/radio-miropcm20.ko] undefined! due to to the radio-miropcm20 module requiring sound/aci.h introduced in 2.6.33

Re: My Microdia (SN9C201) webcam doesn't work properly in Linux anymore

2012-03-05 Thread Jean-Francois Moine
On Mon, 5 Mar 2012 08:58:30 +1100 Xavion xavio...@gmail.com wrote: I can confirm that GSPCA v2.15.1 removes the bad pixels when I use Cheese or VLC. However, I'm sorry to report that the Motion problems unfortunately still remain. Is there something else I must do to overcome the below

Re: [PATCH]NEXT:drivers:staging:media Fix comments and some typos in staging/media/*

2012-03-05 Thread Justin P. Mattock
On 03/05/2012 09:28 AM, David Santinoli wrote: On Mon, Mar 05, 2012 at 07:49:26AM -0800, Justin P. Mattock wrote: - The two functions bellow implements the newer ioctls + The two functions bellow implement the newer ioctls There's still some room for improvement here. :-) Cheers, David

Re: [PATCH]NEXT:drivers:staging:media Fix comments and some typos in staging/media/*

2012-03-05 Thread David Santinoli
On Mon, Mar 05, 2012 at 07:49:26AM -0800, Justin P. Mattock wrote: - The two functions bellow implements the newer ioctls + The two functions bellow implement the newer ioctls There's still some room for improvement here. :-) Cheers, David -- To unsubscribe from this list: send the line

Re: [Linaro-mm-sig] [PATCH 3/3] dma_buf: Add documentation for the new cpu access support

2012-03-05 Thread Clark, Rob
On Fri, Mar 2, 2012 at 6:23 PM, Sakari Ailus sakari.ai...@iki.fi wrote: Hi Daniel, Thanks for the patch. On Thu, Mar 01, 2012 at 04:36:01PM +0100, Daniel Vetter wrote: Signed-off-by: Daniel Vetter daniel.vet...@ffwll.ch ---  Documentation/dma-buf-sharing.txt |  102

cron job: media_tree daily build: WARNINGS

2012-03-05 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:Mon Mar 5 19:00:17 CET 2012 git hash:e8ca6d20a65d9d94693a0ed99b12d95b882dc859 gcc version: i686-linux-gcc

Re: [PATCH 2/3] dma-buf: add support for kernel cpu access

2012-03-05 Thread Daniel Vetter
On Fri, Mar 2, 2012 at 23:24, Rob Clark robdcl...@gmail.com wrote: Perhaps we should check somewhere for required dmabuf ops fxns (like kmap_atomic here), rather than just calling unconditionally what might be a null ptr.  At least put it in the WARN_ON(), but it might be nicer to catch a

DVB-T initial scan file es-Huesca

2012-03-05 Thread Vicente
Hello, here comes attached an update for the initial DVB-T scan file es-Huesca. Kind regards, Vicente. # DVB-T Huesca (Aragon) [Spain] [es-Huesca] # Generated by Vicente Hernando Ara bizen...@gmail.com # T[2] [plp_id] [system_id] freq bw fec_hi fec_lo mod tm guard hi [# comment]

Re: [RESEND] [PATCH] media: ir-sony-decoder: 15bit function decode fix

2012-03-05 Thread James Hogan
On 5 March 2012 17:17, Mauro Carvalho Chehab mche...@redhat.com wrote: Em 05-03-2012 11:32, Trilok Soni escreveu: Hi James, On 3/5/2012 5:27 PM, James Hogan wrote: Ping Another week's gone by with no response. It's a trivial patch, so can somebody please take a look at it? (or if

Re: [media] dvb: Buffer Overfolow in cx24110_set_fec

2012-03-05 Thread santosh prasad nayak
Can anyone comment on it ? Is  FEC_AUTO should be moved up as shown below ? typedef enum fe_code_rate {                FEC_6_7, ,// Should FEC_AUTO, be placed here ?        FEC_7_8,        FEC_8_9,         , // At present FEC_AUTO is here  

Re: [PATCH 2/2] Driver: video: Use the macro DMA_BIT_MASK().

2012-03-05 Thread santosh prasad nayak
Can you please comment on it ? Regards Santosh On Tue, Feb 21, 2012 at 3:43 PM, santosh nayak santoshprasadna...@gmail.com wrote: From: Santosh Nayak santoshprasadna...@gmail.com Use the macro DMA_BIT_MASK instead of the constant  0x. Signed-off-by: Santosh Nayak

[PATCH 1/2] radio-isa: PnP support for the new ISA radio framework

2012-03-05 Thread Ondrej Zary
Add PnP support to the new ISA radio framework. Signed-off-by: Ondrej Zary li...@rainbow-software.org diff --git a/drivers/media/radio/radio-isa.c b/drivers/media/radio/radio-isa.c index 02bcead..b0c0d7a 100644 --- a/drivers/media/radio/radio-isa.c +++ b/drivers/media/radio/radio-isa.c @@ -26,6

[PATCH 2/2] radio-gemtek: add PnP support for AOpen FX-3D/Pro Radio

2012-03-05 Thread Ondrej Zary
Add PnP support to radio-gemtek for AOpen FX-3D/Pro Radio card (AD1816 + Gemtek radio). Signed-off-by: Ondrej Zary li...@rainbow-software.org diff --git a/drivers/media/radio/radio-gemtek.c b/drivers/media/radio/radio-gemtek.c index 9d7fdae..6ea0e23 100644 ---

Re: [PATCH] Add CI support to az6007 driver

2012-03-05 Thread Roger Mårtensson
Jose Alberto Reguero skrev 2012-03-05 00:22: This patch add CI support to az6007 driver. Signed-off-by: Jose Alberto Reguerojaregu...@telefonica.net Since I have this device and have access to a CAM-card and program card to access the encrypted channels(DVB-C) I thought I should try this

[PATCH v2 1/2] radio-isa: PnP support for the new ISA radio framework

2012-03-05 Thread Ondrej Zary
Add PnP support to the new ISA radio framework. Signed-off-by: Ondrej Zary li...@rainbow-software.org diff --git a/drivers/media/radio/radio-isa.c b/drivers/media/radio/radio-isa.c index 02bcead..ed9039f 100644 --- a/drivers/media/radio/radio-isa.c +++ b/drivers/media/radio/radio-isa.c @@ -26,6

[PATCH v2 2/2] radio-gemtek: add PnP support for AOpen FX-3D/Pro Radio

2012-03-05 Thread Ondrej Zary
Add PnP support to radio-gemtek for AOpen FX-3D/Pro Radio card (AD1816 + Gemtek radio). Signed-off-by: Ondrej Zary li...@rainbow-software.org diff --git a/drivers/media/radio/radio-gemtek.c b/drivers/media/radio/radio-gemtek.c index 9d7fdae..235c0e3 100644 ---

Re: [PATCH 1/2] radio-isa: PnP support for the new ISA radio framework

2012-03-05 Thread Ondrej Zary
On Monday 05 March 2012 21:30:51 Ondrej Zary wrote: Add PnP support to the new ISA radio framework. [...] +int radio_isa_pnp_remove(struct pnp_dev *dev) Please ignore this patch, it's broken (this function should return void and radio-gemtek fails to compile without CONFIG_PNP). I've sent

Re: [Linaro-mm-sig] [PATCH 2/3] dma-buf: add support for kernel cpu access

2012-03-05 Thread Daniel Vetter
On Fri, Mar 2, 2012 at 23:53, Rob Clark rob.cl...@linaro.org wrote: nitially the expectation was that userspace would not pass a buffer to multiple subsystems for writing (or that if it did, it would get the undefined results that one could expect)..  so dealing w/ synchronization was punted.

Re: [PATCH 3/3] dma_buf: Add documentation for the new cpu access support

2012-03-05 Thread Daniel Vetter
On Sat, Mar 3, 2012 at 01:23, Sakari Ailus sakari.ai...@iki.fi wrote: Where it should be decided which operations are being done to the buffer when it is passed to user space and back to kernel space? How about spliting these operations to those done on the first time the buffer is passed to

Re: [bug?] ov519 fails to handle Hercules Deluxe webcam

2012-03-05 Thread Skippy
Le 05/03/2012 10:34, Jonathan Nieder a écrit : make localmodconfig; # optional: minimize configuration make; # optionally with -jnum for parallel build The compilation failed (see at the end of this email) and I didn't feel like trying to debug it so I went for Jean-François'

Re: [PATCH] Add CI support to az6007 driver

2012-03-05 Thread Jose Alberto Reguero
On Lunes, 5 de marzo de 2012 21:42:48 Roger Mårtensson escribió: Jose Alberto Reguero skrev 2012-03-05 00:22: This patch add CI support to az6007 driver. Signed-off-by: Jose Alberto Reguerojaregu...@telefonica.net Since I have this device and have access to a CAM-card and program card

Re: My Microdia (SN9C201) webcam doesn't work properly in Linux anymore

2012-03-05 Thread Xavion
Hi Guys Thanks very much for the follow-up emails. Our time-zone differences prevented me from replying sooner. I'm guessing you guys are both in Europe, whereas I'm down and across in Australia. As I plan to use this webcam for home security, I would prefer to keep the JPEG quality at or

RE: [PATCH] media: jpeg: add driver for a version 2.x of jpeg H/W

2012-03-05 Thread Andrzej Pietrasiewicz
On Monday, March 05, 2012 3:00 PM Andrzej Pietrasiewicz wrote: I forgot to sign my last post. One might think I was being rude. So I fix it below. Hello송영목, In general I think the v2x support should be designed to require as little code changes as possible, and they should be related