Re: [PATCH v2 6/6] Add a codec driver for SI476X MFD

2012-10-08 Thread Mark Brown
On Fri, Oct 05, 2012 at 06:55:02PM -0700, Andrey Smirnov wrote: > This commit add a sound codec driver for Silicon Laboratories 476x > series of AM/FM radio chips. Applied, thanks. -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger

Re: [PATCH v2 2/6] Add the main bulk of core driver for SI476x code

2012-10-08 Thread Mark Brown
On Fri, Oct 05, 2012 at 06:54:58PM -0700, Andrey Smirnov wrote: > + err = regulator_enable(core->supplies.va); > + if (err < 0) > + break; > + > + err = regulator_enable(core->supplies.vio2

Re: [PATCH] i2c: adv7183: use module_i2c_driver to simplify the code

2012-10-08 Thread Scott Jiang
2012/10/8 Wei Yongjun : > From: Wei Yongjun > > Use the module_i2c_driver() macro to make the code smaller > and a bit simpler. > > dpatch engine is used to auto generate this patch. > (https://github.com/weiyj/dpatch) > > Signed-off-by: Wei Yongjun Acked-by: Scott Jiang > --- > drivers/media

Re: [PATCH] i2c: vs6624: use module_i2c_driver to simplify the code

2012-10-08 Thread Scott Jiang
2012/10/8 Wei Yongjun : > From: Wei Yongjun > > Use the module_i2c_driver() macro to make the code smaller > and a bit simpler. > > dpatch engine is used to auto generate this patch. > (https://github.com/weiyj/dpatch) > > Signed-off-by: Wei Yongjun Acked-by: Scott Jiang > --- > drivers/media

Re: [PATCH v3 2/3] omap3isp: Add PHY routing configuration

2012-10-08 Thread Sakari Ailus
Hi, Laurent! Thanks for the comments! On Tue, Oct 09, 2012 at 02:17:48AM +0200, Laurent Pinchart wrote: ... > > @@ -32,6 +32,92 @@ > > #include "ispreg.h" > > #include "ispcsiphy.h" > > > > +static void csiphy_routing_cfg_3630(struct isp_csiphy *phy, u32 iface, > > +

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

2012-10-08 Thread Sakari Ailus
Hi Laurent, Thanks for the comments. On Tue, Oct 09, 2012 at 02:33:28AM +0200, Laurent Pinchart wrote: ... > > @@ -248,10 +203,56 @@ static int csiphy_config(struct isp_csiphy *phy, > > if (lanes->clk.pos == 0 || used_lanes & (1 << lanes->clk.pos)) > > return -EINVAL; > > > > -

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

2012-10-08 Thread Laurent Pinchart
On Sunday 07 October 2012 23:07:52 Sakari Ailus wrote: > Configure CSI-2 phy based on platform data in the ISP driver. For that, the > new V4L2_CID_IMAGE_SOURCE_PIXEL_RATE control is used. Previously the same > was configured from the board code. > > This patch is dependent on "omap3: Provide mean

Re: [PATCH v3 2/3] omap3isp: Add PHY routing configuration

2012-10-08 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Sunday 07 October 2012 23:07:51 Sakari Ailus wrote: > Add PHY routing configuration for both 3430 and 3630. Also add register bit > definitions of CSIRXFE and CAMERA_PHY_CTRL registers on OMAP 3430 and 3630, > respectively. > > Signed-off-by: Sakari Ailus > -

RE: [patch] [media] cx25821: testing the wrong variable

2012-10-08 Thread Palash Bandyopadhyay
Mauro, This is to be able to upstream data from the host to the device to be pushed out. I agree this is not an optimal way of doing things and had discussed with Hans on this last month. I will be making changes to the entire upstream path and get rid of this mechanism that we have in pla

[PATCH v2 2/2] [media]: mx2_camera: Fix regression caused by clock conversion

2012-10-08 Thread Fabio Estevam
and make it functional again. Signed-off-by: Fabio Estevam --- Changes since v1: - Rebased against linux-next 20121008. drivers/media/platform/soc_camera/mx2_camera.c | 47 +--- 1 file changed, 34 insertions(+), 13 deletions(-) diff --git a/drivers/media/platform

Re: omap3isp: no pixel rate control in subdev

2012-10-08 Thread Sakari Ailus
Hi, On Sat, Oct 06, 2012 at 02:47:44PM +0100, P Jackson wrote: > I'm trying to get an mt9t001 sensor board working on a Gumstix Overo board > using the latest omap3isp-omap3isp-stable branch from the > linuxtv.org/media.git repository. > > When I 'modprobe omap-isp' I see: > > Linux media inte

Re: [PATCH v3 1/3] omap3isp: Add CSI configuration registers from control block to ISP resources

2012-10-08 Thread Sakari Ailus
Moikka, On Mon, Oct 08, 2012 at 03:06:46PM -0700, Tony Lindgren wrote: > * Sakari Ailus [121007 13:09]: > > Add the registers used to configure the CSI-2 receiver PHY on OMAP3430 and > > 3630 and map them in the ISP driver. The register is part of the control > > block but it only is needed by th

Re: [PATCH v3 1/3] omap3isp: Add CSI configuration registers from control block to ISP resources

2012-10-08 Thread Tony Lindgren
* Sakari Ailus [121007 13:09]: > Add the registers used to configure the CSI-2 receiver PHY on OMAP3430 and > 3630 and map them in the ISP driver. The register is part of the control > block but it only is needed by the ISP driver. Just checking.. These do get reserved with request_mem_region() i

Re: [PATCH v2 1/5] [media] omap3isp: Fix compilation error in ispreg.h

2012-10-08 Thread Tony Lindgren
* Mauro Carvalho Chehab [121007 06:18]: > Em Tue, 2 Oct 2012 09:31:58 -0700 > Tony Lindgren escreveu: > > > * Ido Yariv [121001 15:48]: > > > Commit c49f34bc ("ARM: OMAP2+ Move SoC specific headers to be local to > > > mach-omap2") moved omap34xx.h to mach-omap2. This broke omap3isp, as it > >

Re: [PATCH 05/14] media: add a V4L2 OF parser

2012-10-08 Thread Laurent Pinchart
On Friday 05 October 2012 12:58:21 Guennadi Liakhovetski wrote: > On Fri, 5 Oct 2012, Hans Verkuil wrote: > > On Tue October 2 2012 12:13:20 Sylwester Nawrocki wrote: > > > On 10/02/2012 11:49 AM, Guennadi Liakhovetski wrote: > > > >>> + if (!of_property_read_u32_array(node, "data-lanes", data_

Re: [PATCH 04/14] media: add V4L2 DT binding documentation

2012-10-08 Thread Guennadi Liakhovetski
On Mon, 8 Oct 2012, Laurent Pinchart wrote: > On Monday 08 October 2012 14:00:38 Stephen Warren wrote: > > On 10/02/2012 08:33 AM, Guennadi Liakhovetski wrote: > > > On Tue, 2 Oct 2012, Rob Herring wrote: > > >> On 09/27/2012 09:07 AM, Guennadi Liakhovetski wrote: > > >>> This patch adds a documen

Re: [PATCH RFC] V4L: Add get/set_frame_desc subdev callbacks

2012-10-08 Thread Sakari Ailus
Hi Sylwester, Thanks for the patch. I noticed this is already in Mauro's tree and is there without my ack. I know it's partly my own fault since I haven't commented it earlier. Sylwester Nawrocki wrote: Add subdev callbacks for setting up and retrieving parameters of the frame on media bus t

Re: [PATCH 04/14] media: add V4L2 DT binding documentation

2012-10-08 Thread Laurent Pinchart
On Monday 08 October 2012 14:00:38 Stephen Warren wrote: > On 10/02/2012 08:33 AM, Guennadi Liakhovetski wrote: > > On Tue, 2 Oct 2012, Rob Herring wrote: > >> On 09/27/2012 09:07 AM, Guennadi Liakhovetski wrote: > >>> This patch adds a document, describing common V4L2 device tree bindings. > >>>

Re: [PATCH 2/2 v6] of: add generic videomode description

2012-10-08 Thread Laurent Pinchart
Hi Steffen, On Monday 08 October 2012 14:48:01 Steffen Trumtrar wrote: > On Mon, Oct 08, 2012 at 02:13:50PM +0200, Laurent Pinchart wrote: > > On Thursday 04 October 2012 19:59:20 Steffen Trumtrar wrote: > > > Get videomode from devicetree in a format appropriate for the > > > backend. drm_display

Re: Media_build broken by [PATCH RFC v3 5/5] m5mols: Implement .get_frame_desc subdev callback

2012-10-08 Thread Laurent Pinchart
Hi, When did the {get,set}_frame_desc subdev operations reach mainline ? Last I knew is that they were an RFC, and they're now suddenly in, without even one ack from an embedded v4l developer :-S I'm not totally happy with that. On Saturday 06 October 2012 17:24:22 Jan Hoogenraad wrote: > On my

Re: [git:v4l-dvb/for_v3.7] [media] omap3isp: Replace cpu_is_omap3630() with ISP revision check

2012-10-08 Thread Laurent Pinchart
Mauro, On Saturday 06 October 2012 17:31:58 Mauro Carvalho Chehab wrote: > This is an automatic generated email to let you know that the following > patch were queued at the http://git.linuxtv.org/media_tree.git tree: Please don't. I haven't even sent a pull request for that patch. I don't consi

Re: [PATCH 04/14] media: add V4L2 DT binding documentation

2012-10-08 Thread Stephen Warren
On 09/27/2012 08:07 AM, Guennadi Liakhovetski wrote: > This patch adds a document, describing common V4L2 device tree bindings. > > Co-authored-by: Sylwester Nawrocki > Signed-off-by: Guennadi Liakhovetski I think this looks reasonable now, touch wood:-) I guess I won't ack the binding until th

Re: [PATCH v2 3/6] Add commands abstraction layer for SI476X MFD

2012-10-08 Thread Andrey Smirnov
On 10/08/2012 01:56 AM, Hans Verkuil wrote: > On Sat October 6 2012 03:54:59 Andrey Smirnov wrote: >> This patch adds all the functions used for exchanging commands with >> the chip. >> >> Signed-off-by: Andrey Smirnov >> --- >> drivers/mfd/si476x-cmd.c | 1493 >>

Re: [PATCH 04/14] media: add V4L2 DT binding documentation

2012-10-08 Thread Stephen Warren
On 10/02/2012 08:33 AM, Guennadi Liakhovetski wrote: > On Tue, 2 Oct 2012, Rob Herring wrote: >> On 09/27/2012 09:07 AM, Guennadi Liakhovetski wrote: >>> This patch adds a document, describing common V4L2 device tree bindings. >>> diff --git a/Documentation/devicetree/bindings/media/v4l2.txt >>>

cron job: media_tree daily build: WARNINGS

2012-10-08 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 Oct 8 19:00:19 CEST 2012 git hash:d92462401dde1effa04a51d0a15000e6246d2a43 gcc version: i686-linux-gcc (GC

Re: How to add support for the em2765 webcam Speedlink VAD Laplace to the kernel ?

2012-10-08 Thread Frank Schäfer
Am 07.10.2012 18:08, schrieb Mauro Carvalho Chehab: > Ist that correct ? Mauro, could you please elaborate your plan ? What exactly do you want me to do to get this device supported by the kernel ? >>> Basically, the core em28xx module will have: >>> drivers/media/usb/em28x

[git:v4l-dvb/for_v3.7] [media] ds3000: add module parameter to force firmware upload

2012-10-08 Thread Rémi Cardona
Hi Mauro, There's indeed a conflict since (as far as I can tell) only patch #6 of a 7 patch series was applied. The entire patch series is: - http://patchwork.linuxtv.org/patch/14752/ - http://patchwork.linuxtv.org/patch/14749/ - http://patchwork.linuxtv.org/patch/14753/ - http://patchwork.li

Re: [PATCH v2 1/6] Add header files and Kbuild plumbing for SI476x MFD core

2012-10-08 Thread Andrey Smirnov
On 10/08/2012 01:43 AM, Hans Verkuil wrote: > On Sat October 6 2012 03:54:57 Andrey Smirnov wrote: >> This patch adds all necessary header files and Kbuild plumbing for the >> core driver for Silicon Laboratories Si476x series of AM/FM tuner >> chips. >> >> The driver as a whole is implemented as a

Re: [PATCH v2 5/6] Add a V4L2 driver for SI476X MFD

2012-10-08 Thread Andrey Smirnov
On 10/08/2012 02:30 AM, Hans Verkuil wrote: > On Sat October 6 2012 03:55:01 Andrey Smirnov wrote: >> This commit adds a driver that exposes all the radio related >> functionality of the Si476x series of chips via the V4L2 subsystem. >> >> Signed-off-by: Andrey Smirnov >> --- >> drivers/media/rad

Re: Update on the CEC API

2012-10-08 Thread Florian Fainelli
On Monday 08 October 2012 17:49:00 Hans Verkuil wrote: > On Mon October 8 2012 17:06:20 Florian Fainelli wrote: > > Hi Hans, > > > > On Thursday 27 September 2012 16:33:30 Hans Verkuil wrote: > > > Hi all, > > > > > > During the Linux Plumbers Conference we (i.e. V4L2 and DRM developers) > > > h

Re: [PATCH] tm6000: Add parameter to keep urb bufs allocated.

2012-10-08 Thread Ezequiel Garcia
On Mon, Oct 8, 2012 at 5:49 AM, Julian Scheel wrote: > Hi Ezequiel, > > Am Donnerstag, den 04.10.2012, 14:35 -0300 schrieb Ezequiel Garcia: >> Nice work! Just one pico-tiny nitpick: > > Should I update the patch to reflect this? Or is it ok if the maintainer > integrated your proposal when comitti

Re: [PATCH 1/2 v6] of: add helper to parse display timings

2012-10-08 Thread Laurent Pinchart
Hi Stephen, On Monday 08 October 2012 10:10:31 Stephen Warren wrote: > On 10/08/2012 02:25 AM, Guennadi Liakhovetski wrote: > > On Fri, 5 Oct 2012, Stephen Warren wrote: > >> On 10/04/2012 03:35 PM, Guennadi Liakhovetski wrote: > >>> Hi Steffen > >>> > >>> Sorry for chiming in so late in the game

Re: [PATCH 1/2 v6] of: add helper to parse display timings

2012-10-08 Thread Mitch Bradley
On 10/7/2012 11:01 PM, Tomi Valkeinen wrote: > On Mon, 2012-10-08 at 10:25 +0200, Guennadi Liakhovetski wrote: > >> In general, I might be misunderstanding something, but don't we have to >> distinguish between 2 types of information about display timings: (1) is >> defined by the display contro

Re: [PATCH 1/2 v6] of: add helper to parse display timings

2012-10-08 Thread Stephen Warren
On 10/08/2012 06:20 AM, Tomi Valkeinen wrote: > On Mon, 2012-10-08 at 14:04 +0200, Laurent Pinchart wrote: >> On Monday 08 October 2012 12:01:18 Tomi Valkeinen wrote: >>> On Mon, 2012-10-08 at 10:25 +0200, Guennadi Liakhovetski >>> wrote: ... >>> Of course, if this is about describing the hardware,

Re: [PATCH 1/2 v6] of: add helper to parse display timings

2012-10-08 Thread Stephen Warren
On 10/08/2012 02:25 AM, Guennadi Liakhovetski wrote: > On Fri, 5 Oct 2012, Stephen Warren wrote: > >> On 10/04/2012 03:35 PM, Guennadi Liakhovetski wrote: >>> Hi Steffen >>> >>> Sorry for chiming in so late in the game, but I've long been wanting to >>> have a look at this and compare with what w

Re: [PATCH 05/14] media: add a V4L2 OF parser

2012-10-08 Thread Guennadi Liakhovetski
On Mon, 8 Oct 2012, Guennadi Liakhovetski wrote: > On Mon, 8 Oct 2012, Hans Verkuil wrote: > > > On Mon October 8 2012 17:15:53 Guennadi Liakhovetski wrote: [snip] > > > No, I don't think there is a way to get a device pointer from a DT node. > > > > Not a device pointer, but the i2c bus and i

Re: [PATCH 05/14] media: add a V4L2 OF parser

2012-10-08 Thread Guennadi Liakhovetski
On Mon, 8 Oct 2012, Hans Verkuil wrote: > On Mon October 8 2012 17:15:53 Guennadi Liakhovetski wrote: > > On Mon, 8 Oct 2012, Hans Verkuil wrote: > > > > > On Mon October 8 2012 16:30:53 Guennadi Liakhovetski wrote: > > > > On Mon, 8 Oct 2012, Hans Verkuil wrote: > > > > > > > > > On Mon October

Re: Update on the CEC API

2012-10-08 Thread Hans Verkuil
On Mon October 8 2012 17:06:20 Florian Fainelli wrote: > Hi Hans, > > On Thursday 27 September 2012 16:33:30 Hans Verkuil wrote: > > Hi all, > > > > During the Linux Plumbers Conference we (i.e. V4L2 and DRM developers) had a > > discussion on how to handle the CEC protocol that's part of the HDM

Re: [PATCH 05/14] media: add a V4L2 OF parser

2012-10-08 Thread Hans Verkuil
On Mon October 8 2012 17:15:53 Guennadi Liakhovetski wrote: > On Mon, 8 Oct 2012, Hans Verkuil wrote: > > > On Mon October 8 2012 16:30:53 Guennadi Liakhovetski wrote: > > > On Mon, 8 Oct 2012, Hans Verkuil wrote: > > > > > > > On Mon October 8 2012 14:23:25 Guennadi Liakhovetski wrote: > > > > >

Re: [PATCH] Fixed list_del corruption in videobuf-core.c : videobuf_queue_cancel()

2012-10-08 Thread Andrei Mandychev
Hi, From time to time I get a backtrace listed below when I switch video from LCD to TV and vice versa. The video is switched without any problem but the kernel sometimes generates this trace. I decided to investigate it and discovered that it happens when you call VIDIOC_STREAMOFF ioctl and

Re: [PATCH V7 0/5] [Media] Radio: Fixes and New features for FM

2012-10-08 Thread halli manjunatha
Hans, Sure.. right now I am busy with some other work so I will submit the V8 within few days :) Manju On Mon, Oct 8, 2012 at 4:04 AM, Hans Verkuil wrote: > > Hi Manjunatha, > > Can you make a v8? The tuner band issues have been settled and are now > merged, > so it would be good to finalize th

Re: [PATCH 05/14] media: add a V4L2 OF parser

2012-10-08 Thread Guennadi Liakhovetski
On Mon, 8 Oct 2012, Hans Verkuil wrote: > On Mon October 8 2012 16:30:53 Guennadi Liakhovetski wrote: > > On Mon, 8 Oct 2012, Hans Verkuil wrote: > > > > > On Mon October 8 2012 14:23:25 Guennadi Liakhovetski wrote: > > > > Hi Hans > > > > > > > > On Fri, 5 Oct 2012, Hans Verkuil wrote: > > > >

Re: [PATCH 2/2] [media]: mx2_camera: Fix regression caused by clock conversion

2012-10-08 Thread Fabio Estevam
On Mon, Oct 8, 2012 at 7:04 AM, Gaëtan Carlier wrote: > > This patch does not apply on linux-next-20121008. I suppose that linux-media > development branch is needed. How can I put linux-media branch on top of Ok, I have just rebased it against linux-next-20121008. See below. It allo

Re: Update on the CEC API

2012-10-08 Thread Florian Fainelli
Hi Hans, On Thursday 27 September 2012 16:33:30 Hans Verkuil wrote: > Hi all, > > During the Linux Plumbers Conference we (i.e. V4L2 and DRM developers) had a > discussion on how to handle the CEC protocol that's part of the HDMI standard. > > The decision was made to create a CEC bus with CEC

Re: [PATCH 05/14] media: add a V4L2 OF parser

2012-10-08 Thread Hans Verkuil
On Mon October 8 2012 16:30:53 Guennadi Liakhovetski wrote: > On Mon, 8 Oct 2012, Hans Verkuil wrote: > > > On Mon October 8 2012 14:23:25 Guennadi Liakhovetski wrote: > > > Hi Hans > > > > > > On Fri, 5 Oct 2012, Hans Verkuil wrote: > > > > > > [snip] > > > > > > > I think the soc_camera patch

RE: [PATCH] Fixed list_del corruption in videobuf-core.c : videobuf_queue_cancel()

2012-10-08 Thread Hiremath, Vaibhav
On Fri, Oct 05, 2012 at 21:14:25, Andrei Mandychev wrote: > If there is a buffer with VIDEOBUF_QUEUED state it won't be deleted properly > because the head of queue loses its elements by calling INIT_LIST_HEAD() > before videobuf_streamoff(). "dma_queue" is driver internal queue and videobuf_strea

Bugs in DVB-S Prof-Tuner 8000 driver (idle & suspend)

2012-10-08 Thread Wojciech Myrda
Hi, I am using these new driver http://patchwork.linuxtv.org/patch/14300/ for my card. It generally works great allowing me to send DiseqC commands, tune to LNBs etc but only as long as I do not use idle or suspend with it which in first circumstance leads to kernel panics for which I acquired num

Re: [PATCH 05/14] media: add a V4L2 OF parser

2012-10-08 Thread Guennadi Liakhovetski
On Mon, 8 Oct 2012, Hans Verkuil wrote: > On Mon October 8 2012 14:23:25 Guennadi Liakhovetski wrote: > > Hi Hans > > > > On Fri, 5 Oct 2012, Hans Verkuil wrote: > > > > [snip] > > > > > I think the soc_camera patches should be left out for now. I suspect that > > > by adding core support for a

[PATCH] i2c: adv7183: use module_i2c_driver to simplify the code

2012-10-08 Thread Wei Yongjun
From: Wei Yongjun Use the module_i2c_driver() macro to make the code smaller and a bit simpler. dpatch engine is used to auto generate this patch. (https://github.com/weiyj/dpatch) Signed-off-by: Wei Yongjun --- drivers/media/i2c/adv7183.c | 13 + 1 file changed, 1 insertion(+), 1

[PATCH] i2c: vs6624: use module_i2c_driver to simplify the code

2012-10-08 Thread Wei Yongjun
From: Wei Yongjun Use the module_i2c_driver() macro to make the code smaller and a bit simpler. dpatch engine is used to auto generate this patch. (https://github.com/weiyj/dpatch) Signed-off-by: Wei Yongjun --- drivers/media/i2c/vs6624.c | 13 + 1 file changed, 1 insertion(+), 12

Re: omap3-isp-live does not allocate big enough buffers?

2012-10-08 Thread Laurent Pinchart
Hi Florian, On Monday 08 October 2012 07:46:35 Florian Neuhaus wrote: > Hi Laurent > > I am working on a demo-application for displaying a videostream on a > beagleboard. Now I have seen that you have done something similar, > but if I run your "live" application out of the omap3-isp-live repo, >

Re: [v4l-utils] Use RCC variable to call rcc compiler

2012-10-08 Thread Khem Raj
On Sun, Oct 7, 2012 at 11:26 PM, Gregor Jasny wrote: > Hello Khem, > > On 10/7/12 8:41 PM, Khem Raj wrote: >> In cross compile environment rcc native version >> may be staged in a different directory or even >> called rcc4 or somesuch. Lets provide a facility >> to specify it in environment > > I'

Re: [PATCH 05/14] media: add a V4L2 OF parser

2012-10-08 Thread Hans Verkuil
On Mon October 8 2012 14:23:25 Guennadi Liakhovetski wrote: > Hi Hans > > On Fri, 5 Oct 2012, Hans Verkuil wrote: > > [snip] > > > I think the soc_camera patches should be left out for now. I suspect that > > by adding core support for async i2c handling first, > > Ok, let's think, what this me

Re: Media_build broken by [PATCH RFC v3 5/5] m5mols: Implement .get_frame_desc subdev callback

2012-10-08 Thread Hans Verkuil
On Sun October 7 2012 13:13:36 Sylwester Nawrocki wrote: > On 10/07/2012 03:19 AM, Michael West wrote: > > This patch changes versions.txt and disables VIDEO_M5MOLS which > > fixed the build for my 3.2 kernel but looking at the logs it looks > > like this is not the way to fix it as it's not just

[PATCH] [media] staging :go700: use module_i2c_driver to simplify the code

2012-10-08 Thread Wei Yongjun
From: Wei Yongjun Use the module_i2c_driver() macro to make the code smaller and a bit simpler. dpatch engine is used to auto generate this patch. (https://github.com/weiyj/dpatch) Signed-off-by: Wei Yongjun --- drivers/staging/media/go7007/wis-uda1342.c| 13 + drivers/staging

Re: [PATCH 2/2 v6] of: add generic videomode description

2012-10-08 Thread Steffen Trumtrar
On Mon, Oct 08, 2012 at 02:13:50PM +0200, Laurent Pinchart wrote: > Hi Steffen, > > Thanks for the patch. > > On Thursday 04 October 2012 19:59:20 Steffen Trumtrar wrote: > > Get videomode from devicetree in a format appropriate for the > > backend. drm_display_mode and fb_videomode are supported

Re: Zolid USB DVB-T Tuner Pictures

2012-10-08 Thread Jens Bauer
Hi Oliver. On Mon, 08 Oct 2012 14:22:11 +0200, Oliver Schinagl wrote: > I have that too, if i'm not logged in :) if you are logged in, it > should work (with an active account). Try 'private session' or > whatever you have in your browser (ctrl-p top of my head in ff) and > ensure you login. I

[PATCH] dvb-frontends: fix potential NULL pointer dereference in stv0900_set_mclk()

2012-10-08 Thread Wei Yongjun
From: Wei Yongjun The dereference should be moved below the NULL test. dpatch engine is used to auto generate this patch. (https://github.com/weiyj/dpatch) Signed-off-by: Wei Yongjun --- drivers/media/dvb-frontends/stv0900_core.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) di

[PATCH] [media] v4l2: use list_move_tail instead of list_del/list_add_tail

2012-10-08 Thread Wei Yongjun
From: Wei Yongjun Using list_move_tail() instead of list_del() + list_add_tail(). dpatch engine is used to auto generate this patch. (https://github.com/weiyj/dpatch) Signed-off-by: Wei Yongjun --- drivers/media/platform/fsl-viu.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) d

[PATCH] cx88: use list_move_tail instead of list_del/list_add_tail

2012-10-08 Thread Wei Yongjun
From: Wei Yongjun Using list_move_tail() instead of list_del() + list_add_tail(). dpatch engine is used to auto generate this patch. (https://github.com/weiyj/dpatch) Signed-off-by: Wei Yongjun --- drivers/media/pci/cx88/cx88-mpeg.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-)

[PATCH] cx23885: use list_move_tail instead of list_del/list_add_tail

2012-10-08 Thread Wei Yongjun
From: Wei Yongjun Using list_move_tail() instead of list_del() + list_add_tail(). dpatch engine is used to auto generate this patch. (https://github.com/weiyj/dpatch) Signed-off-by: Wei Yongjun --- drivers/media/pci/cx23885/cx23885-core.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletio

[PATCH] [media] s5p-tv: remove unused including

2012-10-08 Thread Wei Yongjun
From: Wei Yongjun Remove including that don't need it. dpatch engine is used to auto generate this patch. (https://github.com/weiyj/dpatch) Signed-off-by: Wei Yongjun --- drivers/media/platform/s5p-tv/mixer_video.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/media/platform/s5p

Re: [PATCH 05/14] media: add a V4L2 OF parser

2012-10-08 Thread Guennadi Liakhovetski
Hi Hans On Fri, 5 Oct 2012, Hans Verkuil wrote: [snip] > I think the soc_camera patches should be left out for now. I suspect that > by adding core support for async i2c handling first, Ok, let's think, what this meacs - async I2C in media / V4L2 core. The main reason for our probing order pro

Re: Zolid USB DVB-T Tuner Pictures

2012-10-08 Thread Oliver Schinagl
On 08-10-12 14:16, Jens Bauer wrote: Hi Oliver. On Mon, 08 Oct 2012 14:01:03 +0200, Oliver Schinagl wrote: (I must admit that I find it a bit confusing when 'Edit' does not do what I expect, but there's probably a reason for that). I assume you have created an account and can edit various pag

Re: [PATCH 1/2 v6] of: add helper to parse display timings

2012-10-08 Thread Tomi Valkeinen
On Mon, 2012-10-08 at 14:04 +0200, Laurent Pinchart wrote: > Hi Tomi, > > On Monday 08 October 2012 12:01:18 Tomi Valkeinen wrote: > > On Mon, 2012-10-08 at 10:25 +0200, Guennadi Liakhovetski wrote: > > > In general, I might be misunderstanding something, but don't we have to > > > distinguish bet

Re: [PATCH 2/2 v6] of: add generic videomode description

2012-10-08 Thread Laurent Pinchart
Hi Steffen, On Monday 08 October 2012 09:57:41 Steffen Trumtrar wrote: > On Mon, Oct 08, 2012 at 10:21:53AM +0300, Tomi Valkeinen wrote: > > On Thu, 2012-10-04 at 19:59 +0200, Steffen Trumtrar wrote: [snip] > > > diff --git a/include/linux/of_videomode.h b/include/linux/of_videomode.h > > > new

Re: Zolid USB DVB-T Tuner Pictures

2012-10-08 Thread Jens Bauer
Hi Oliver. On Mon, 08 Oct 2012 14:01:03 +0200, Oliver Schinagl wrote: >> (I must admit that I find it a bit confusing when 'Edit' does not do >> what I expect, but there's probably a reason for that). > I assume you have created an account and can edit various pages; Yep, so far, so good. :) >

Re: [PATCH 2/2 v6] of: add generic videomode description

2012-10-08 Thread Laurent Pinchart
Hi Steffen, Thanks for the patch. On Thursday 04 October 2012 19:59:20 Steffen Trumtrar wrote: > Get videomode from devicetree in a format appropriate for the > backend. drm_display_mode and fb_videomode are supported atm. > Uses the display signal timings from of_display_timings > > Signed-off-

Re: [PATCH 1/2 v6] of: add helper to parse display timings

2012-10-08 Thread Laurent Pinchart
Hi Tomi, On Monday 08 October 2012 12:01:18 Tomi Valkeinen wrote: > On Mon, 2012-10-08 at 10:25 +0200, Guennadi Liakhovetski wrote: > > In general, I might be misunderstanding something, but don't we have to > > distinguish between 2 types of information about display timings: (1) is > > defined b

Re: Zolid USB DVB-T Tuner Pictures

2012-10-08 Thread Oliver Schinagl
On 08-10-12 13:12, Jens Bauer wrote: Hi Oliver. Thank you for your reply. I do think I need a little more guidance, though. ;) I've been trying to figure out how to make just a simple change to a dot for the last hour, but always end up on the page saying that I do not have permission to edit

Re: Re: host driver of camera

2012-10-08 Thread Guennadi Liakhovetski
Hi On Mon, 8 Oct 2012, tingtingy...@rdamicro.com wrote: > Dear Guennadi, > I am sorry , see you reply just now. > I am in a puzzle about the soc camera 's init. > In the following, > 1. in soc_camera.c file > > static struct platform_driver __refdata soc_camera_pdrv = { > .remove = __devexit_p

Re: [PATCHv9 18/25] v4l: add buffer exporting via dmabuf

2012-10-08 Thread Hans Verkuil
On Mon October 8 2012 12:41:28 Tomasz Stanislawski wrote: > Hi Hans, > > On 10/08/2012 11:54 AM, Hans Verkuil wrote: > > On Mon October 8 2012 11:40:37 Tomasz Stanislawski wrote: > >> Hi Hans, > >> > >> On 10/07/2012 04:17 PM, Hans Verkuil wrote: > >>> On Sun October 7 2012 15:38:30 Laurent Pincha

Re: Zolid USB DVB-T Tuner Pictures

2012-10-08 Thread Jens Bauer
Hi Oliver. Thank you for your reply. I do think I need a little more guidance, though. ;) I've been trying to figure out how to make just a simple change to a dot for the last hour, but always end up on the page saying that I do not have permission to edit 'this template'... Do I need to be gra

Re: [PATCHv9 18/25] v4l: add buffer exporting via dmabuf

2012-10-08 Thread Tomasz Stanislawski
Hi Hans, On 10/08/2012 11:54 AM, Hans Verkuil wrote: > On Mon October 8 2012 11:40:37 Tomasz Stanislawski wrote: >> Hi Hans, >> >> On 10/07/2012 04:17 PM, Hans Verkuil wrote: >>> On Sun October 7 2012 15:38:30 Laurent Pinchart wrote: Hi Hans, On Friday 05 October 2012 10:55:40 Hans

Re: Zolid USB DVB-T Tuner Pictures

2012-10-08 Thread Oliver Schinagl
On 07-10-12 17:56, Jens Bauer wrote: Hi... I saw on this page... ...That I can contribute to the project by writing to this list. Now, I don't have much knowledge about USB; I don't even have Linux (but I probably will within a few months).

Re: [PATCH 2/2] [media]: mx2_camera: Fix regression caused by clock conversion

2012-10-08 Thread Gaëtan Carlier
gt;clk_csi_per); + clk_put(pcdev->clk_csi_ahb); exit_kfree: kfree(pcdev); exit: @@ -1865,7 +1880,8 @@ static int __devexit mx2_camera_remove(struct platform_device *pdev) struct mx2_camera_dev, soc_host); struct resource *res; - clk_put(

Re: [PATCH 05/14] media: add a V4L2 OF parser

2012-10-08 Thread Sylwester Nawrocki
Hi Guennadi, On 09/27/2012 04:07 PM, Guennadi Liakhovetski wrote: > Add a V4L2 OF parser, implementing bindings, documented in > Documentation/devicetree/bindings/media/v4l2.txt. > > Signed-off-by: Guennadi Liakhovetski > --- > drivers/media/v4l2-core/Makefile |3 + > drivers/media/v4l2-co

Re: [PATCH] rc-msi-digivox-ii: Add full scan keycodes - Was: Re: v4l

2012-10-08 Thread Antti Palosaari
On 10/07/2012 04:03 PM, Mauro Carvalho Chehab wrote: Em Sun, 30 Sep 2012 05:49:26 +0200 Wolfgang Bail escreveu: Hello, the ir-rc from my msi DigiVox mini II Version 3 (af9015) will not work since kernel 3.2.x (kubuntu 12.04), same with s2-liplianin or v4l. sudo ir-keytable -t shows: Testing

Re: [PATCHv9 18/25] v4l: add buffer exporting via dmabuf

2012-10-08 Thread Hans Verkuil
On Mon October 8 2012 11:40:37 Tomasz Stanislawski wrote: > Hi Hans, > > On 10/07/2012 04:17 PM, Hans Verkuil wrote: > > On Sun October 7 2012 15:38:30 Laurent Pinchart wrote: > >> Hi Hans, > >> > >> On Friday 05 October 2012 10:55:40 Hans Verkuil wrote: > >>> On Tue October 2 2012 16:27:29 Tomasz

Re: [PATCH] mt9v022: support required register settings in snapshot mode

2012-10-08 Thread Guennadi Liakhovetski
On Mon, 8 Oct 2012, Anatolij Gustschin wrote: > On Mon, 8 Oct 2012 11:22:05 +0200 (CEST) > Guennadi Liakhovetski wrote: > > > On Sat, 6 Oct 2012, Anatolij Gustschin wrote: > > > > > Hi Guennadi, > > > > > > On Fri, 28 Sep 2012 15:30:33 +0200 (CEST) > > > Guennadi Liakhovetski wrote: > > > >

Re: [PATCH] mt9v022: support required register settings in snapshot mode

2012-10-08 Thread Anatolij Gustschin
On Mon, 8 Oct 2012 11:22:05 +0200 (CEST) Guennadi Liakhovetski wrote: > On Sat, 6 Oct 2012, Anatolij Gustschin wrote: > > > Hi Guennadi, > > > > On Fri, 28 Sep 2012 15:30:33 +0200 (CEST) > > Guennadi Liakhovetski wrote: > > > > > On Fri, 28 Sep 2012, Anatolij Gustschin wrote: > > > > > > > H

Re: [PATCH 05/14] media: add a V4L2 OF parser

2012-10-08 Thread Guennadi Liakhovetski
Hi Sylwester On Fri, 5 Oct 2012, Sylwester Nawrocki wrote: > On 10/05/2012 12:58 PM, Guennadi Liakhovetski wrote: > >> One area that I do not yet completely understand is the i2c bus > >> notifications > >> (or asynchronous loading of i2c modules). > >> > >> I would have expected that using OF t

Re: [PATCHv9 18/25] v4l: add buffer exporting via dmabuf

2012-10-08 Thread Tomasz Stanislawski
Hi Hans, On 10/07/2012 04:17 PM, Hans Verkuil wrote: > On Sun October 7 2012 15:38:30 Laurent Pinchart wrote: >> Hi Hans, >> >> On Friday 05 October 2012 10:55:40 Hans Verkuil wrote: >>> On Tue October 2 2012 16:27:29 Tomasz Stanislawski wrote: This patch adds extension to V4L2 api. It allow

Re: [PATCH v2 0/6] A driver for Si476x series of chips

2012-10-08 Thread Hans Verkuil
Hi Andrey! On Sat October 6 2012 03:54:56 Andrey Smirnov wrote: > This is a second version of the patchset originaly posted here: > https://lkml.org/lkml/2012/9/13/590 > > To save everyone's time I'll repost the original description of it: > > > This patchset contains a driver for a Silicon Lab

Re: [PATCH v2 5/6] Add a V4L2 driver for SI476X MFD

2012-10-08 Thread Hans Verkuil
On Sat October 6 2012 03:55:01 Andrey Smirnov wrote: > This commit adds a driver that exposes all the radio related > functionality of the Si476x series of chips via the V4L2 subsystem. > > Signed-off-by: Andrey Smirnov > --- > drivers/media/radio/Kconfig| 17 + > drivers/media/radio/M

Re: [PATCH 10/14] media: soc-camera: support OF cameras

2012-10-08 Thread Sylwester Nawrocki
Hi Guennadi, On 10/08/2012 10:37 AM, Guennadi Liakhovetski wrote: >>> case BUS_NOTIFY_BOUND_DRIVER: >> >> There is no need for different handling of this event as well ? > > There is. The former is entered before the sensor I2C probe method is > called and prepares the data for probing, the

Re: [PATCH] mt9v022: support required register settings in snapshot mode

2012-10-08 Thread Guennadi Liakhovetski
On Sat, 6 Oct 2012, Anatolij Gustschin wrote: > Hi Guennadi, > > On Fri, 28 Sep 2012 15:30:33 +0200 (CEST) > Guennadi Liakhovetski wrote: > > > On Fri, 28 Sep 2012, Anatolij Gustschin wrote: > > > > > Hi Guennadi, > > > > > > On Fri, 28 Sep 2012 14:33:34 +0200 (CEST) > > > Guennadi Liakhovets

Re: [PATCH 2/2] [media]: mx2_camera: Fix regression caused by clock conversion

2012-10-08 Thread javier Martin
On 8 October 2012 11:09, Guennadi Liakhovetski wrote: > Hi Fabio > > On Fri, 5 Oct 2012, Fabio Estevam wrote: > >> Since mx27 transitioned to the commmon clock framework in 3.5, the correct >> way >> to acquire the csi clock is to get csi_ahb and csi_per clocks separately. >> >> By not doing so t

Re: [PATCH 2/2] [media]: mx2_camera: Fix regression caused by clock conversion

2012-10-08 Thread Guennadi Liakhovetski
Hi Fabio On Fri, 5 Oct 2012, Fabio Estevam wrote: > Since mx27 transitioned to the commmon clock framework in 3.5, the correct way > to acquire the csi clock is to get csi_ahb and csi_per clocks separately. > > By not doing so the camera sensor does not probe correctly: > > soc-camera-pdrv soc-

Re: [PATCH V7 0/5] [Media] Radio: Fixes and New features for FM

2012-10-08 Thread Hans Verkuil
Hi Manjunatha, Can you make a v8? The tuner band issues have been settled and are now merged, so it would be good to finalize this. On Mon May 21 2012 19:12:01 manjunatha_ha...@ti.com wrote: > From: Manjunatha Halli > > Mauro and the list, > > This version 7 of patchset resolves the comments r

Re: [PATCH 1/2 v6] of: add helper to parse display timings

2012-10-08 Thread Tomi Valkeinen
On Mon, 2012-10-08 at 10:25 +0200, Guennadi Liakhovetski wrote: > In general, I might be misunderstanding something, but don't we have to > distinguish between 2 types of information about display timings: (1) is > defined by the display controller requirements, is known to the display > driver

Re: [PATCH v2 3/6] Add commands abstraction layer for SI476X MFD

2012-10-08 Thread Hans Verkuil
On Sat October 6 2012 03:54:59 Andrey Smirnov wrote: > This patch adds all the functions used for exchanging commands with > the chip. > > Signed-off-by: Andrey Smirnov > --- > drivers/mfd/si476x-cmd.c | 1493 > ++ > 1 file changed, 1493 insertions(+)

Re: [PATCH] tm6000: Add parameter to keep urb bufs allocated.

2012-10-08 Thread Julian Scheel
Hi Ezequiel, Am Donnerstag, den 04.10.2012, 14:35 -0300 schrieb Ezequiel Garcia: > Nice work! Just one pico-tiny nitpick: Should I update the patch to reflect this? Or is it ok if the maintainer integrated your proposal when comitting it? > On Thu, Oct 4, 2012 at 11:04 AM, Julian Scheel wrote:

Re: [PATCH v2 1/6] Add header files and Kbuild plumbing for SI476x MFD core

2012-10-08 Thread Hans Verkuil
On Sat October 6 2012 03:54:57 Andrey Smirnov wrote: > This patch adds all necessary header files and Kbuild plumbing for the > core driver for Silicon Laboratories Si476x series of AM/FM tuner > chips. > > The driver as a whole is implemented as an MFD device and this patch > adds a core portion

Re: [PATCH 10/14] media: soc-camera: support OF cameras

2012-10-08 Thread Guennadi Liakhovetski
Hi Sylwester On Fri, 5 Oct 2012, Sylwester Nawrocki wrote: > On 09/27/2012 04:07 PM, Guennadi Liakhovetski wrote: > > With OF we aren't getting platform data any more. To minimise changes we > > create all the missing data ourselves, including compulsory struct > > soc_camera_link objects. Host-c

Re: [PATCH 13/13] drivers/media/tuners/e4000.c: use macros for i2c_msg initialization

2012-10-08 Thread Julia Lawall
I found only 15 uses of I2C_MSG_OP, out of 653 uses of one of the three macros. Since I2C_MSG_OP has the complete set of flags, I think it should be OK? One of the uses, in drivers/media/i2c/adv7604.c, is as follows: struct i2c_msg msg[2] = { { client->addr, 0, 1, msgbuf0 },

Re: [PATCH 1/2 v6] of: add helper to parse display timings

2012-10-08 Thread Guennadi Liakhovetski
On Fri, 5 Oct 2012, Stephen Warren wrote: > On 10/04/2012 03:35 PM, Guennadi Liakhovetski wrote: > > Hi Steffen > > > > Sorry for chiming in so late in the game, but I've long been wanting to > > have a look at this and compare with what we do for V4L2, so, this seems a > > great opportunity to

Re: [PATCH 04/14] media: add V4L2 DT binding documentation

2012-10-08 Thread Guennadi Liakhovetski
On Fri, 5 Oct 2012, Sascha Hauer wrote: > On Fri, Oct 05, 2012 at 05:41:00PM +0200, Guennadi Liakhovetski wrote: > > Hi Sascha > > > > > > + > > > > + ceu0: ceu@0xfe91 { > > > > + compatible = "renesas,sh-mobile-ceu"; > > > > + reg = <0xfe91 0xa0>; > > >

Re: [PATCH 2/2 v6] of: add generic videomode description

2012-10-08 Thread Steffen Trumtrar
On Mon, Oct 08, 2012 at 10:21:53AM +0300, Tomi Valkeinen wrote: > On Thu, 2012-10-04 at 19:59 +0200, Steffen Trumtrar wrote: > > Get videomode from devicetree in a format appropriate for the > > backend. drm_display_mode and fb_videomode are supported atm. > > Uses the display signal timings from o

Re: [PATCH 13/13] drivers/media/tuners/e4000.c: use macros for i2c_msg initialization

2012-10-08 Thread Antti Palosaari
On 10/08/2012 05:11 AM, Ryan Mallon wrote: On 08/10/12 12:56, Mauro Carvalho Chehab wrote: Em Sun, 07 Oct 2012 14:51:58 -0700 Joe Perches escreveu: On Sun, 2012-10-07 at 23:43 +0200, Julia Lawall wrote: On Sun, 7 Oct 2012, Joe Perches wrote: Are READ and WRITE the action names? They are re

  1   2   >