[patch -next] V4L/DVB: IR/streamzap: fix usec to nsec conversion

2010-10-12 Thread Dan Carpenter
There is an integer overflow here because 0x0300 * 1000 is too large for 31 bits. rawir.duration should be in terms of nsecs. IR_MAX_DURATION and 0x0300 are already in terms of nsecs. STREAMZAP_TIMEOUT and STREAMZAP_RESOLUTION are 255 and 256 respectively and are in terms of usecs. The

RFC:[PATCH 2/2] Ux500: Add support for MCDE frame buffer driver

2010-10-12 Thread Jimmy Rubin
This patch adds support for the MCDE, Memory-to-display controller, found in the ST-Ericsson Ux500 products. The configuration of the MCDE hardware, the MCDE framebuffer device and the display that is connected to Ux500 is managed in this patch. Signed-off-by: Jimmy Rubin

RFC: [PATCH 0/2] Add support for MCDE frame buffer driver

2010-10-12 Thread Jimmy Rubin
It contains a display sub system framework (DSS) which is used to implement the frame buffer device interface and a display device framework that is used to add support for different type of displays such as LCD, HDMI and so on. The current implementation supports DSI command mode displays.

[GIT PATCHES FOR 2.6.37] s5p-fimc camera host interface and SR030PC30 sensor drivers

2010-10-12 Thread Sylwester Nawrocki
Hi Mauro, The following changes since commit 9147e3dbca0712a5435cd2ea7c48d39344f904eb V4L/DVB: cx231xx: use core-assisted lock (Sat Oct 9 13:13:35 2010) are available in the git repository at: git://git.infradead.org/users/kmpark/linux-2.6-samsung s5p_fimc_vga_for_2.6.37 Sylwester Nawrocki

Re: OMAP 3530 camera ISP forks and new media framework

2010-10-12 Thread Bastian Hecht
Hello Laurent, 2010/10/11 Laurent Pinchart laurent.pinch...@ideasonboard.com: Hi Bastian, On Monday 11 October 2010 16:58:35 Bastian Hecht wrote: 2010/10/11 Laurent Pinchart laurent.pinch...@ideasonboard.com: On Monday 11 October 2010 14:59:15 Bastian Hecht wrote: So... let's see if i got

[PATCH/RFC v2 0/6] Videobuf2 framework

2010-10-12 Thread Marek Szyprowski
Hello, I've decided to continue development of the VideoBuf2 at Samsung until Pawel finds some spare time to help us (currently he is very busy in his new work). I have updated the patches with suggestions from Hans. Support for read() is planned but requires a bit more work. Now I would like to

[PATCH v2 6/6] v4l: videobuf2: add CMA allocator

2010-10-12 Thread Marek Szyprowski
From: Pawel Osciak p.osc...@samsung.com Add support for the CMA contiguous memory allocator to videobuf2. Signed-off-by: Pawel Osciak p.osc...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com Signed-off-by: Marek Szyprowski m.szyprow...@samsung.com ---

[PATCH v2 4/6] v4l: videobuf2: add DMA coherent allocator

2010-10-12 Thread Marek Szyprowski
From: Pawel Osciak p.osc...@samsung.com Add an implementation of DMA coherent memory allocator and handling routines for videobuf2, implemented on top of dma_alloc_coherent() call. Signed-off-by: Pawel Osciak p.osc...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com

[PATCH v2 5/6] v4l: vivi: port to videobuf2

2010-10-12 Thread Marek Szyprowski
From: Pawel Osciak p.osc...@samsung.com Make vivi use videobuf2 in place of videobuf. Signed-off-by: Pawel Osciak p.osc...@samsung.com Signed-off-by: Marek Szyprowski m.szyprow...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- drivers/media/video/Kconfig |2 +-

[PATCH v2 2/6] v4l: videobuf2: add generic memory handling routines

2010-10-12 Thread Marek Szyprowski
From: Pawel Osciak p.osc...@samsung.com Add generic memory handling routines for userspace pointer handling, contiguous memory verification and mapping. Signed-off-by: Pawel Osciak p.osc...@samsung.com Signed-off-by: Marek Szyprowski m.szyprow...@samsung.com Signed-off-by: Kyungmin Park

[PATCH v2 3/6] v4l: videobuf2: add vmalloc allocator

2010-10-12 Thread Marek Szyprowski
From: Pawel Osciak p.osc...@samsung.com Add an implementation of contiguous virtual memory allocator and handling routines for videobuf2, implemented on top of vmalloc()/vfree() calls. Signed-off-by: Pawel Osciak p.osc...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com

[PATCH v2 1/6] v4l: add videobuf2 Video for Linux 2 driver framework

2010-10-12 Thread Marek Szyprowski
From: Pawel Osciak p.osc...@samsung.com Videobuf2 is a Video for Linux 2 API-compatible driver framework for multimedia devices. It acts as an intermediate layer between userspace applications and device drivers. It also provides low-level, modular memory management functions for drivers.

Re: OMAP 3530 camera ISP forks and new media framework

2010-10-12 Thread Laurent Pinchart
Hi Bastian, On Tuesday 12 October 2010 14:10:00 Bastian Hecht wrote: 2010/10/11 Laurent Pinchart laurent.pinch...@ideasonboard.com: On Monday 11 October 2010 16:58:35 Bastian Hecht wrote: 2010/10/11 Laurent Pinchart laurent.pinch...@ideasonboard.com: On Monday 11 October 2010 14:59:15

Re: OMAP 3530 camera ISP forks and new media framework

2010-10-12 Thread Bastian Hecht
2010/10/12 Bastian Hecht hec...@googlemail.com: Hello Laurent, 2010/10/11 Laurent Pinchart laurent.pinch...@ideasonboard.com: Hi Bastian, On Monday 11 October 2010 16:58:35 Bastian Hecht wrote: 2010/10/11 Laurent Pinchart laurent.pinch...@ideasonboard.com: On Monday 11 October 2010

Re: [patch -next] V4L/DVB: IR/streamzap: fix usec to nsec conversion

2010-10-12 Thread Jarod Wilson
On Tue, Oct 12, 2010 at 08:01:11AM +0200, Dan Carpenter wrote: There is an integer overflow here because 0x0300 * 1000 is too large for 31 bits. rawir.duration should be in terms of nsecs. IR_MAX_DURATION and 0x0300 are already in terms of nsecs. STREAMZAP_TIMEOUT and

Re: [GIT PULL REQUEST] IR patches for 2.6.37-rc1

2010-10-12 Thread Jarod Wilson
On Sat, Oct 09, 2010 at 02:23:15PM -0400, Jarod Wilson wrote: On Fri, Oct 8, 2010 at 5:44 PM, Jarod Wilson ja...@redhat.com wrote: Hey Mauro, I've queued up some lirc fixes and a couple of patches that add a new ir-core driver for the Nuvoton w836x7hg Super I/O integrated CIR

[GIT PATCHES FOR 2.6.37] uvcvideo driver patches for 2.6.37

2010-10-12 Thread Laurent Pinchart
Hi Mauro, This series has been posted on the linux-media mailing list on Wednesday the 6th of October as [PATCH 00/14] uvcvideo patches for 2.6.37 PAtch 08/14 has been modified to generate sequence numbers starting at 0, as required by the V4L2 specification. The series is otherwise unmodified.

Re: s-video input from terratec cinergy 200 gives black frame or out of sync video

2010-10-12 Thread Antonio-Blasco Bonito
I got no answer. Why? I thought it was correct to ask my question on this list... Did I ask it in a wrong way? 2010/10/10 Antonio-Blasco Bonito blasco.bon...@gmail.com I'm trying to use a Terratec Cinergy 200 usb board to grab analog video. I'm using Ubuntu 10.04 and the included em28xx driver

Re: [RFC PATCH] Audio standards on tm6000

2010-10-12 Thread Stefan Ringel
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am 12.10.2010 20:28, schrieb Dmitri Belimov: Hi Em 08-10-2010 16:03, Dmitri Belimov escreveu: Hi Mauro Not so good. Audio with this patch has bad white noise sometimes and bad quality. I try found better configuration for SECAM-DK. Ok.

Re: Proposal to extend V4L2 Control ID for advanced imaging processing features.

2010-10-12 Thread Sakari Ailus
Wang, Wen W wrote: Hi all, Hi Wang, Thanks for the proposal! (Cc'ing Hans Verkuil.) We are developing a V4L2 device driver which the ISP has many advanced features such as manual exposure setting, GDC (Geometric Distortion Correction), CAC (Chromatic Aberration Correction), video

[cron job] v4l-dvb daily build 2.6.26 and up: ERRORS

2010-10-12 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:Tue Oct 12 19:00:11 CEST 2010 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 15164:1da5fed5c8b2 git master:

Re: dm1105 scan but won't tune? [RESOLVED]

2010-10-12 Thread Simon Baxter
OK, progress (idiot error?) My problem was OptusB1 requires a 45 degree skew on the LNB on the dish itself. So now I can do an szap as follows: TV3:12456:h:0:22500:512:650:1920 ./szap -l 11300 -c channels-conf/dvb-s/OptusD1E160 TV3 reading channels from file 'channels-conf/dvb-s/OptusD1E160'

Re: [RFC PATCH] Audio standards on tm6000

2010-10-12 Thread Dmitri Belimov
Hi Stefan -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am 12.10.2010 20:28, schrieb Dmitri Belimov: Hi Em 08-10-2010 16:03, Dmitri Belimov escreveu: Hi Mauro Not so good. Audio with this patch has bad white noise sometimes and bad quality. I try found better configuration