Re: [linux-media] [PATCH 2/2] stb0899: fixed reading of IF_AGC_GAIN register

2012-02-29 Thread Klaus Schmidinger
When reading IF_AGC_GAIN register a wrong value for the base address register was used (STB0899_DEMOD instead of STB0899_S2DEMOD). That lead to a wrong signal strength value on DVB-S2 transponders. Signed-off-by: Andreas Regel andreas.re...@gmx.de --- drivers/media/dvb/frontends/stb0899_drv.c |

Re: [linux-media] [PATCH 1/2] stb0899: set FE_HAS_SIGNAL flag in read_status

2012-02-29 Thread Klaus Schmidinger
On 28.02.2012 19:40, Andreas Regel wrote: In stb0899_read_status the FE_HAS_SIGNAL flag was not set in case of a successful carrier lock. This change fixes that. Signed-off-by: Andreas Regel andreas.re...@gmx.de --- drivers/media/dvb/frontends/stb0899_drv.c |4 ++-- 1 files changed, 2

Re: [PATCH v3 32/33] smiapp: Add driver.

2012-02-29 Thread Laurent Pinchart
Hi Sakari, On Wednesday 29 February 2012 07:41:50 Sakari Ailus wrote: On Mon, Feb 27, 2012 at 04:38:49PM +0100, Laurent Pinchart wrote: On Monday 20 February 2012 03:57:11 Sakari Ailus wrote: From: Sakari Ailus sakari.ai...@maxwell.research.nokia.com Add driver for SMIA++/SMIA image

Re: [Linaro-mm-sig] [PATCHv23 00/16] Contiguous Memory Allocator

2012-02-29 Thread Barry Song
2012/2/23 Marek Szyprowski m.szyprow...@samsung.com: Hi, This is (yet another) quick update of CMA patches. I've rebased them onto next-20120222 tree from git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git and fixed the bug pointed by Aaro Koskinen. For the whole series:

Re: [Linaro-mm-sig] [PATCHv23 12/16] mm: trigger page reclaim in alloc_contig_range() to stabilise watermarks

2012-02-29 Thread Barry Song
2012/2/23 Marek Szyprowski m.szyprow...@samsung.com: alloc_contig_range() performs memory allocation so it also should keep track on keeping the correct level of memory watermarks. This commit adds a call to *_slowpath style reclaim to grab enough pages to make sure that the final collection

[PATCH] Add missing slab.h to fix linux-next compile errors

2012-02-29 Thread Hans Verkuil
Signed-off-by: Hans Verkuil hans.verk...@cisco.com diff --git a/drivers/media/radio/radio-aimslab.c b/drivers/media/radio/radio-aimslab.c index 862dfce..98e0c8c 100644 --- a/drivers/media/radio/radio-aimslab.c +++ b/drivers/media/radio/radio-aimslab.c @@ -32,6 +32,7 @@ #include linux/delay.h

Re: [Linaro-mm-sig] [PATCHv23 13/16] drivers: add Contiguous Memory Allocator

2012-02-29 Thread Barry Song
2012/2/23 Marek Szyprowski m.szyprow...@samsung.com: The Contiguous Memory Allocator is a set of helper functions for DMA mapping framework that improves allocations of contiguous memory chunks. CMA grabs memory on system boot, marks it with MIGRATE_CMA migrate type and gives back to the

Re: [PATCH v3 32/33] smiapp: Add driver.

2012-02-29 Thread Sylwester Nawrocki
Hi, On 02/29/2012 10:35 AM, Laurent Pinchart wrote: + if (sensor-pixel_array-ctrl_handler.error) { + dev_err(client-dev, + pixel array controls initialization failed (%d)\n, + sensor-pixel_array-ctrl_handler.error); Shouldn't you call

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

2012-02-29 Thread Jiun Yu
From: Jiun Yu jiun...@samsung.com Samsung Exynos tv subsystem is composed of video processor, mixer, HDMI Tx and analog TV. Each h/w IP becomes a entity and also inputs of video and graphic layers become entities in media controller framework like below figure. +-+-+

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

2012-02-29 Thread Hans Verkuil
On Tuesday, February 28, 2012 23:52:21 halli manjunatha wrote: On Tue, Feb 28, 2012 at 4:05 AM, Hans Verkuil hverk...@xs4all.nl wrote: On Monday, February 27, 2012 17:29:18 halli manjunatha wrote: Hi Hans, Agreed I don't mind to create new controls for below things 1) FM RX Band

[RESEND 2] [PATCH] rc/ir-raw: fix BUG_ON, using kfifo_rec_ptr_1 instead of kfifo

2012-02-29 Thread James Hogan
Raw IR events are passed to the raw event thread through a kfifo. The size of the event struct is 12 bytes, and space for 512 events is reserved in the kfifo (6144 bytes), however this is rounded down to 4096 bytes (the next power of 2) by __kfifo_alloc(). 4096 bytes is not divisible by 12

Re: [Linaro-mm-sig] [PATCHv23 00/16] Contiguous Memory Allocator

2012-02-29 Thread Michal Nazarewicz
On Wed, 29 Feb 2012 10:35:42 +0100, Barry Song 21cn...@gmail.com wrote: 2012/2/23 Marek Szyprowski m.szyprow...@samsung.com: This is (yet another) quick update of CMA patches. I've rebased them onto next-20120222 tree from git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git and

Re: [PATCH v3 1/1] rc: Add support for GPIO based IR Receiver driver.

2012-02-29 Thread Trilok Soni
Hi Mauro/Wilson, On 2/29/2012 1:59 AM, James Hogan wrote: On Tue, Feb 28, 2012 at 11:21:40AM +0530, Ravi Kumar V wrote: Adds GPIO based IR Receiver driver. It decodes signals using decoders available in rc framework. Signed-off-by: Ravi Kumar Vkumar...@codeaurora.org Looks good to me (but

[PATCH] media: rotator: Add new image rotator driver for EXYNOS

2012-02-29 Thread Sunyoung Kang
This patch adds support image rotator driver for EXYNOS SoCs and this is including following: 1) Image format : RGB565/888, YUV422 1p, YUV420 2p/3p 2) Rotation : 0/90/180/270 degree and X/Y Flip Signed-off-by: Ayoung Sim a@samsung.com Signed-off-by: Sunyoung Kang sy0816.k...@samsung.com

Re: [Linaro-mm-sig] [PATCHv23 00/16] Contiguous Memory Allocator

2012-02-29 Thread Barry Song
Michal, 2012/2/29 Michal Nazarewicz min...@mina86.com: On Wed, 29 Feb 2012 10:35:42 +0100, Barry Song 21cn...@gmail.com wrote: 2012/2/23 Marek Szyprowski m.szyprow...@samsung.com: This is (yet another) quick update of CMA patches. I've rebased them onto next-20120222 tree from

Re: [Linaro-mm-sig] [PATCHv23 00/16] Contiguous Memory Allocator

2012-02-29 Thread Michal Nazarewicz
On Wed, 29 Feb 2012 14:34:02 +0100, Barry Song 21cn...@gmail.com wrote: 2012/2/29 Michal Nazarewicz min...@mina86.com: On Wed, 29 Feb 2012 10:35:42 +0100, Barry Song 21cn...@gmail.com wrote: and i also write a simple kernel helper to test the CMA: Would it make sense to make a patch out of

Re: [Linaro-mm-sig] [PATCHv23 00/16] Contiguous Memory Allocator

2012-02-29 Thread Barry Song
2012/2/29 Michal Nazarewicz min...@mina86.com: On Wed, 29 Feb 2012 14:34:02 +0100, Barry Song 21cn...@gmail.com wrote: 2012/2/29 Michal Nazarewicz min...@mina86.com: On Wed, 29 Feb 2012 10:35:42 +0100, Barry Song 21cn...@gmail.com wrote: and i also write a simple kernel helper to test the

Re: Video Capture Issue

2012-02-29 Thread Sriram V
Hi Aguirre Sergio, 1) Looks like it could be a data lane issue. OMAP detects lots of ERRSOTSYNCHS errors on the datalanes (CSI2_COMPLEXIO_IRQSTATUS) 2) Even if i configure it to use only one data lane on both sides. It detects errors on other data lanes. That explains the

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

2012-02-29 Thread halli manjunatha
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 at 4:05 AM, Hans Verkuil hverk...@xs4all.nl wrote: On Monday, February 27, 2012 17:29:18 halli manjunatha wrote: Hi Hans, Agreed I

cron job: media_tree daily build: ERRORS

2012-02-29 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:Wed Feb 29 19:00:33 CET 2012 git hash:e8ca6d20a65d9d94693a0ed99b12d95b882dc859 gcc version: i686-linux-gcc

rtl2830: __udivdi3 undefined

2012-02-29 Thread Geert Uytterhoeven
http://kisskb.ellerman.id.au/kisskb/buildresult/5759200/ ERROR: __udivdi3 [drivers/media/dvb/frontends/rtl2830.ko] undefined! I didn't look too deeply into it, but I think it's caused by the num /= priv-cfg.xtal in rtl2830_init() (with num being u64). Can't it use do_div() instead?

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

2012-02-29 Thread Sylwester Nawrocki
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 connection between them and to control each IPs. This patch adds

3.1/3.2 uvcvideo and Creative Live! Cam Optia AF

2012-02-29 Thread Josh Boyer
Hi Laurent, We've had a bug report [1] in Fedora for a while now that the uvcvideo driver no longer works on the Creative Live! Cam Optia AF (ID 041e:4058) in the 3.1 and 3.2 kernels. The bug has all the various output from dmesg, lsusb, etc. I'm wondering if there is anything further we can

Re: [PATCH] Add missing slab.h to fix linux-next compile errors

2012-02-29 Thread Randy Dunlap
On 02/29/2012 01:50 AM, Hans Verkuil wrote: Signed-off-by: Hans Verkuil hans.verk...@cisco.com Reported-by: Randy Dunlap rdun...@xenotime.net Acked-by: Randy Dunlap rdun...@xenotime.net Thanks. diff --git a/drivers/media/radio/radio-aimslab.c b/drivers/media/radio/radio-aimslab.c index

audio is not working

2012-02-29 Thread Steven Dahlin
I am running an athlon ii 945 with a hauppauge wintv 1600 capture card. I have a version of mythtv installed (0.24) in which I downloaded the latest V4L-DVB Device Drivers from git://linuxtv.org/media_build.git, built them, and then installed. Everything is up to date with the software packages.