Re: soc-camera layer2 driver

2011-03-23 Thread Gilles
Laurent, the videobuf2-dma-contig allocator), look at sh_mobile_ceu for an advanced example, or at one of mx3_camera, mx2_camera, mx1_camera for simpler ones. omap1_camera is also trying to support both sg and contig... If you have questions, don't hesitate to ask on the ML, also cc me and /

RE: [PATCH v17 08/13] davinci: eliminate use of IO_ADDRESS() on sysmod

2011-03-23 Thread Nori, Sekhar
On Tue, Mar 22, 2011 at 18:45:03, Arnd Bergmann wrote: On Tuesday 22 March 2011, Nori, Sekhar wrote: .. but forgot to fix this. There is nothing wrong with using writel, but it doesn't fit into what the subject of this patch is. Well, to be more exact, the __raw_writel was actually

Re: S2-3200 switching-timeouts on 2.6.38

2011-03-23 Thread Rico Tzschichholz
Hello Manu, you are absolutely right, thanks for pointing this out. Looking forward to the stb0899-patch inclusion. Best Regards, Rico signature.asc Description: OpenPGP digital signature

Re: [RFC PATCH 4/3] remove radio-maestro

2011-03-23 Thread Takashi Iwai
At Tue, 22 Mar 2011 15:44:05 -0300, Mauro Carvalho Chehab wrote: Hi Takashi, Em 19-03-2011 13:23, Ondrej Zary escreveu: Remove broken radio-maestro driver as the radio functionality is now integrated in the es1968 driver. I prefer if you could also add it on your tree, as we want to

Re: [PATCH 1/2] v180 - DM04/QQBOX added support for BS2F7HZ0194 versions

2011-03-23 Thread Antti Palosaari
On 03/23/2011 01:00 AM, Mauro Carvalho Chehab wrote: Em 22-03-2011 19:12, Malcolm Priestley escreveu: On Tue, 2011-03-22 at 02:43 +0200, Antti Palosaari wrote: Anyhow, my opinion is still that we *should* make all NEC remotes as 32 bit and leave handling of NEC 16, NEC 24, NEC 32 to NEC

Re: Leadtek Winfast 1800H FM Tuner

2011-03-23 Thread Mauro Carvalho Chehab
Em 22-03-2011 08:54, Andrew Goff escreveu: On Tue, Mar 22, 2011 at 8:09 AM, Mauro Carvalho Chehab mche...@redhat.com wrote: Em 21-03-2011 17:46, Andrew Goff escreveu: On Tue 22-Mar-2011 4:44 AM, Mauro Carvalho Chehab wrote: Em 21-03-2011 08:35, Andrew Goff escreveu: On Mon 21-Mar-2011 9:21

NEC 32 bits RC codes - was: Re: [PATCH 1/2] v180 - DM04/QQBOX added support for BS2F7HZ0194 versions

2011-03-23 Thread Mauro Carvalho Chehab
Em 23-03-2011 05:41, Antti Palosaari escreveu: On 03/23/2011 01:00 AM, Mauro Carvalho Chehab wrote: Em 22-03-2011 19:12, Malcolm Priestley escreveu: On Tue, 2011-03-22 at 02:43 +0200, Antti Palosaari wrote: Anyhow, my opinion is still that we *should* make all NEC remotes as 32 bit and

[PATCH 1/3 v2] V4L: soc_camera_platform: add helper functions to manage device instances

2011-03-23 Thread Guennadi Liakhovetski
Add helper inline functions to correctly manage dynamic allocation and freeing of platform devices. This avoids the ugly code to nullify device objects. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de Acked-by: Magnus Damm d...@opensource.se --- v2: fix the device link assignment

[PATCH] ARM: mach-shmobile: add coherent DMA mask to CEU camera devices

2011-03-23 Thread Guennadi Liakhovetski
Cameras are currently broken on ARM sh-mobile platforms. They need a suitable coherent DMA mask. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- arch/arm/mach-shmobile/board-ap4evb.c |3 ++- arch/arm/mach-shmobile/board-mackerel.c |3 ++- 2 files changed, 4

Re: [PATCH] omap3isp: implement ENUM_FMT

2011-03-23 Thread Sakari Ailus
Hi Michael, Thanks for the patch. Michael Jones wrote: From dccbd4a0a717ee72a3271075b1e3456a9c67ca0e Mon Sep 17 00:00:00 2001 From: Michael Jones michael.jo...@matrix-vision.de Date: Tue, 22 Mar 2011 11:47:22 +0100 Subject: [PATCH] omap3isp: implement ENUM_FMT Whatever format is currently

Re: [PATCH v3] SoC Camera: add driver for OMAP1 camera interface

2011-03-23 Thread Guennadi Liakhovetski
Hi Janusz You might want to retest ams-delta with the camera on the current (next or git://linuxtv.org/media_tree.git staging/for_v2.6.39 ) kernel - I suspect, you'll need something similar to http://article.gmane.org/gmane.linux.drivers.video-input-infrastructure/30728 Thanks Guennadi ---

[PATCH] V4L: fix videobof2 to correctly identify allocation failures

2011-03-23 Thread Guennadi Liakhovetski
The videobuf2-dma-contig allocator returns an ERR_PTR() on failure, not a NULL like all other allocators. Fix videobuf2-core to also correctly recognise those failures. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- drivers/media/video/videobuf2-core.c |2 +- 1 files changed,

[PATCH] V4L: fix an error message

2011-03-23 Thread Guennadi Liakhovetski
buf-size is not yet initialised in videobuf2-dma-contig at the time of the error message, use size. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- drivers/media/video/videobuf2-dma-contig.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git

[PATCH] V4L: fix a macro definition

2011-03-23 Thread Guennadi Liakhovetski
v4l2_device_unregister_subdev() wrongly uses arg... instead of ## arg in its body. Fix it. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- include/media/v4l2-device.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/media/v4l2-device.h

[PATCH] V4L: soc-camera: fix a recent multi-camera breakage on sh-mobile

2011-03-23 Thread Guennadi Liakhovetski
With the introduction of CSI2 support on sh-mobile, the host driver switched to using v4l2_device_call_until_err() with grp_id == 0 to call subdev operations on the sensor and the CSI2 subdev. However, this has broken multi-client set ups like the one on migor, because that way all operations get

[PATCH] V4L: imx074: return a meaningful error code instead of -1

2011-03-23 Thread Guennadi Liakhovetski
Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- drivers/media/video/imx074.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/media/video/imx074.c b/drivers/media/video/imx074.c index 1a11691..0382ea7 100644 --- a/drivers/media/video/imx074.c +++

[PATCH] V4L: soc-camera: don't dereference I2C client after it has been removed

2011-03-23 Thread Guennadi Liakhovetski
i2c_unregister_device() frees the I2C client, so, dereferencing it afterwards is a bug, that leads to Oopses. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- drivers/media/video/soc_camera.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git

[PATCH] V4L: sh_mobile_csi2: fix module reloading

2011-03-23 Thread Guennadi Liakhovetski
If the camera host driver (sh_mobile_ceu_camera.c) is unloaded and then reloaded, probe will fail, because camera client .set_bus_param() and .query_bus_param() methods have been set to NULL. Fix this by caching the original pointers and restoring them on driver-unbind. Signed-off-by: Guennadi

[PATCH] [media] radio: wl128x: Update registration process with ST.

2011-03-23 Thread manjunatha_halli
From: Manjunatha Halli manjunatha_ha...@ti.com As underlying ST driver registration API's have changed with latest 2.6.38-rc8 kernel this patch will update the FM driver accordingly. Signed-off-by: Manjunatha Halli manjunatha_ha...@ti.com --- drivers/media/radio/wl128x/fmdrv_common.c | 16

Re: [PATCH] omap3isp: implement ENUM_FMT

2011-03-23 Thread Michael Jones
Hi Sakari, On 03/23/2011 10:52 AM, Sakari Ailus wrote: Hi Michael, Thanks for the patch. Michael Jones wrote: From dccbd4a0a717ee72a3271075b1e3456a9c67ca0e Mon Sep 17 00:00:00 2001 From: Michael Jones michael.jo...@matrix-vision.de Date: Tue, 22 Mar 2011 11:47:22 +0100 Subject: [PATCH]

[RFC/PATCH] v4l: add fourcc definitons for compressed formats.

2011-03-23 Thread Kamil Debski
Add fourcc definitions for the following compressed formats: H264, H264 without start codes, MPEG1/2/4 ES, DIVX versions 3.11, 4, 5.0-5.0.2, 5.03 and up, XVID, VC1 Simple/Main Profile and VC1 Advanced profile. --- Hi, During the v4l2 brain storming meeting in Warsaw one of the topics was

Re: [RFC/PATCH] v4l: add fourcc definitons for compressed formats.

2011-03-23 Thread Hans Verkuil
(Added Ben to the CC list so he can look at this from the solo6x10 perspective). On Wednesday, March 23, 2011 12:09:33 Kamil Debski wrote: Add fourcc definitions for the following compressed formats: H264, H264 without start codes, MPEG1/2/4 ES, DIVX versions 3.11, 4, 5.0-5.0.2, 5.03 and up,

Re: [PATCH] omap3isp: implement ENUM_FMT

2011-03-23 Thread Laurent Pinchart
Hi Michael, On Wednesday 23 March 2011 12:07:12 Michael Jones wrote: On 03/23/2011 10:52 AM, Sakari Ailus wrote: Michael Jones wrote: From dccbd4a0a717ee72a3271075b1e3456a9c67ca0e Mon Sep 17 00:00:00 2001 From: Michael Jones michael.jo...@matrix-vision.de Date: Tue, 22 Mar 2011 11:47:22

Re: [RFC PATCH] HDMI:Support for EDID parsing in kernel.

2011-03-23 Thread K, Mythri P
Hi Dave, On Wed, Mar 23, 2011 at 6:16 AM, Dave Airlie airl...@gmail.com wrote: On Wed, Mar 23, 2011 at 3:32 AM, Mythri P K mythr...@ti.com wrote: Adding support for common EDID parsing in kernel. EDID - Extended display identification data is a data structure provided by a digital display to

[PATCH] zoran: Drop unused module parameters encoder and decoder

2011-03-23 Thread Jean Delvare
The ability to force the encoder or decoder chip was broken by commit 0ab6e1c38d80ab586e3a1ca9e71844131d9f51dc in February 2009. As nobody complained for over 2 years, I take it that these parameters were no longer used so we can simply drop them. Signed-off-by: Jean Delvare kh...@linux-fr.org

OMAP3 isp single-shot

2011-03-23 Thread Daniel Lundborg
Hello, I am successfully using the gumstix overo board together with a camera sensor Aptina MT9V034 with the kernel 2.6.35 and patches from http://git.linuxtv.org/pinchartl/media.git (isp6). I can use the media-ctl program and yavta to take pictures in continous streaming mode. media-ctl -r -l

Re: [RFC PATCH] HDMI:Support for EDID parsing in kernel.

2011-03-23 Thread K, Mythri P
Hi Paul, On Tue, Mar 22, 2011 at 11:28 PM, Paul Mundt let...@linux-sh.org wrote: On Tue, Mar 22, 2011 at 02:52:59PM -0300, Mauro Carvalho Chehab wrote: Em 22-03-2011 14:32, Mythri P K escreveu: Adding support for common EDID parsing in kernel. EDID - Extended display identification data

Re: [PATCH] ARM: mach-shmobile: add coherent DMA mask to CEU camera devices

2011-03-23 Thread Paul Mundt
On Wed, Mar 23, 2011 at 10:29:16AM +0100, Guennadi Liakhovetski wrote: Cameras are currently broken on ARM sh-mobile platforms. They need a suitable coherent DMA mask. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de Applied, thanks. -- To unsubscribe from this list: send the line

Re: Future desktop on dumb frame buffers?

2011-03-23 Thread Robert Fekete
On 21 March 2011 21:08, Alex Deucher alexdeuc...@gmail.com wrote: On Mon, Mar 21, 2011 at 3:50 PM, Geert Uytterhoeven ge...@linux-m68k.org wrote: On Mon, Mar 21, 2011 at 20:25, Jesse Barnes jbar...@virtuousgeek.org wrote: On Mon, 21 Mar 2011 19:19:43 + timofonic timofonic

Re: [RFC PATCH] HDMI:Support for EDID parsing in kernel.

2011-03-23 Thread Jesse Barnes
On Wed, 23 Mar 2011 18:58:27 +0530 K, Mythri P mythr...@ti.com wrote: Hi Dave, On Wed, Mar 23, 2011 at 6:16 AM, Dave Airlie airl...@gmail.com wrote: On Wed, Mar 23, 2011 at 3:32 AM, Mythri P K mythr...@ti.com wrote: Adding support for common EDID parsing in kernel. EDID - Extended

Re: S2-3200 switching-timeouts on 2.6.38

2011-03-23 Thread H. Ellenberger
Hi list, Follow up to: [1] @Manu: Your argumentation is inconsistent and lacks any proof. Running a full scan of Astra 19.2 E with Kaffeine together with cards model Skystar HD and Twinhan/Azurewave VP-1041 results in a channel list of approx 400 stations only. When I apply my patch then

[cron job] v4l-dvb daily build: ERRORS

2011-03-23 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:Wed Mar 23 19:00:39 CET 2011 git hash:f772f016e15a0b93b5aa9680203107ab8cb9bdc6 gcc version: i686-linux-gcc (GCC)

[PULL] soc-camera: one more patch

2011-03-23 Thread Guennadi Liakhovetski
Hi Mauro Sorry, would be nice if we could manage to push one more patch for 2.6.39: The following changes since commit f772f016e15a0b93b5aa9680203107ab8cb9bdc6: [media] media-devnode: don't depend on BKL stuff (2011-03-22 19:43:01 -0300) are available in the git repository at:

Re: [PATCH v3] SoC Camera: add driver for OMAP1 camera interface

2011-03-23 Thread Janusz Krzysztofik
On Wednesday, 23 March 2011, at 11:00:06, Guennadi Liakhovetski wrote: Hi Janusz You might want to retest ams-delta with the camera on the current (next or git://linuxtv.org/media_tree.git staging/for_v2.6.39 ) kernel - I suspect, you'll need something similar to