RE: [PATCHv16 0/9] Contiguous Memory Allocator

2011-10-11 Thread Marek Szyprowski
Hello, On Tuesday, October 11, 2011 12:57 AM Andrew Morton wrote: On Fri, 7 Oct 2011 18:27:06 +0200 Arnd Bergmann a...@arndb.de wrote: On Thursday 06 October 2011, Marek Szyprowski wrote: Once again I decided to post an updated version of the Contiguous Memory Allocator patches.

RE: [Linaro-mm-sig] [PATCHv16 0/9] Contiguous Memory Allocator

2011-10-11 Thread Marek Szyprowski
Hello, On Monday, October 10, 2011 2:08 PM Maxime Coquelin wrote: On 10/06/2011 03:54 PM, Marek Szyprowski wrote: Welcome everyone again, Once again I decided to post an updated version of the Contiguous Memory Allocator patches. This version provides mainly a bugfix for a very

[RFC 0/2] Introduce dma buffer sharing mechanism

2011-10-11 Thread Sumit Semwal
Hello Everyone, Various subsystems - V4L2, GPU-accessors, DRI to name a few - have felt the need to have a common mechanism to share memory buffers across different devices - ARM, video hardware, GPU. This need comes forth from a variety of use cases including cameras, image processing, video

[RFC 1/2] dma-buf: Introduce dma buffer sharing mechanism

2011-10-11 Thread Sumit Semwal
This is the first step in defining a dma buffer sharing mechanism. A new buffer object dma_buf is added, with operations and API to allow easy sharing of this buffer object across devices. The framework allows: - a new buffer-object to be created with fixed size. - different devices to 'attach'

[RFC 2/2] dma-buf: Documentation for buffer sharing framework

2011-10-11 Thread Sumit Semwal
Add documentation for dma buffer sharing framework, explaining the various operations, members and API of the dma buffer sharing framework. Signed-off-by: Sumit Semwal sumit.sem...@linaro.org Signed-off-by: Sumit Semwal sumit.sem...@ti.com --- Documentation/dma-buf-sharing.txt | 210

[PATCH] omap3isp: Report the ISP revision through the media controller API

2011-10-11 Thread Laurent Pinchart
Set the media_device::hw_revision field to the ISP revision number. Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com --- drivers/media/video/omap3isp/isp.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/media/video/omap3isp/isp.c

Re: [PATCH] omap3isp: Report the ISP revision through the media controller API

2011-10-11 Thread Sakari Ailus
On Tue, Oct 11, 2011 at 11:39:04AM +0200, Laurent Pinchart wrote: Set the media_device::hw_revision field to the ISP revision number. Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com --- drivers/media/video/omap3isp/isp.c |1 + 1 files changed, 1 insertions(+), 0

Re: omap3-isp status

2011-10-11 Thread Enrico
On Mon, Oct 10, 2011 at 8:18 PM, Javier Martinez Canillas martinez.jav...@gmail.com wrote: On Mon, Oct 10, 2011 at 7:09 PM, Enrico ebut...@users.berlios.de wrote: On Mon, Oct 10, 2011 at 6:53 PM, Javier Martinez Canillas martinez.jav...@gmail.com wrote: On Mon, Oct 10, 2011 at 6:34 PM, Enrico

RE: [Linaro-mm-sig] [PATCHv16 0/9] Contiguous Memory Allocator

2011-10-11 Thread Marek Szyprowski
Hello, On Tuesday, October 11, 2011 9:30 AM Maxime Coquelin wrote: On 10/11/2011 09:17 AM, Marek Szyprowski wrote: On Monday, October 10, 2011 2:08 PM Maxime Coquelin wrote: During our stress tests, we encountered some problems : 1) Contiguous allocation lockup:

Re: omap3-isp status

2011-10-11 Thread Javier Martinez Canillas
On Tue, Oct 11, 2011 at 12:29 PM, Enrico ebut...@users.berlios.de wrote: On Mon, Oct 10, 2011 at 8:18 PM, Javier Martinez Canillas martinez.jav...@gmail.com wrote: On Mon, Oct 10, 2011 at 7:09 PM, Enrico ebut...@users.berlios.de wrote: On Mon, Oct 10, 2011 at 6:53 PM, Javier Martinez Canillas

[PATCH v4 1/3] [media] at91: add code to enable/disable ISI_MCK clock

2011-10-11 Thread Josh Wu
This patch - add ISI_MCK clock enable/disable code. - change field name in isi_platform_data structure Signed-off-by: Josh Wu josh...@atmel.com --- drivers/media/video/atmel-isi.c | 34 +++--- include/media/atmel-isi.h |4 +++- 2 files changed, 34

[PATCH v4 0/3] add Atmel ISI, ov2640 support for sam9m10/sam9g45

2011-10-11 Thread Josh Wu
Hi, all Accroding to the comments from Guennadi, please see below the changes since V3: 1. Move isi_mck registration to at91_add_device_isi, but the user has a chance to or not to use the Programmable clock of the SoC. 2. In board file, e.g. board-sam9m10g45ek.c, user can pass a boolean to

[PATCH v4 2/3] at91: add parameters for at91_add_device_isi function

2011-10-11 Thread Josh Wu
This patch add parameters for at91_add_device_isi function Signed-off-by: Josh Wu josh...@atmel.com --- arch/arm/mach-at91/at91sam9263_devices.c | 13 ++--- arch/arm/mach-at91/include/mach/board.h |4 +++- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git

[PATCH v4 3/3] at91: add Atmel ISI and ov2640 support on sam9m10/sam9g45 board

2011-10-11 Thread Josh Wu
This patch add: - ov2640 sensor in sam9m10/sam9g45 board. - support to use PCK as ISI_MCK. PCK's parent is managed in SoC level, e.g. at91sam9g45_devices.c Signed-off-by: Josh Wu josh...@atmel.com --- arch/arm/mach-at91/at91sam9g45_devices.c | 98 +-

[PATCH 0/1] ARM: EXYNOS4: JPEG: driver initial release

2011-10-11 Thread Andrzej Pietrasiewicz
Dear All, This patch contains a driver for the JPEG codec integrated peripheral found in the Samsung Exynos4 SoC. The driver is implemented within the V4L2 framework as a mem-to-mem device. It presents two video nodes to userspace, one for the encoding part, and one for the decoding part. From

RE: [Linaro-mm-sig] [PATCHv16 0/9] Contiguous Memory Allocator

2011-10-11 Thread Marek Szyprowski
Hello, On Tuesday, October 11, 2011 1:26 PM Maxime Coquelin wrote: On 10/11/2011 12:50 PM, Marek Szyprowski wrote: Hello, On Tuesday, October 11, 2011 9:30 AM Maxime Coquelin wrote: On 10/11/2011 09:17 AM, Marek Szyprowski wrote: On Monday, October 10, 2011 2:08 PM Maxime Coquelin

OMAP3 ISP ghosting

2011-10-11 Thread Gary Thomas
As a number of us have seen, when using the OMAP3 ISP with a BT-656 sensor, e.g. TVP5150, the results are not 100% correct. Some number of frames (typically 2) will be correct, followed by another set (3) which are incorrect and show only partially correct data. Note: I think the numbers (2

OMAP3 ISP with digital sensor

2011-10-11 Thread Gary Thomas
Laurent, Do you have an example of how to use a digital sensor, in particular the MT9P031, with the OMAP3 ISP? Thanks -- Gary Thomas | Consulting for the MLB Associates |Embedded world

Re: [PATCHv16 0/9] Contiguous Memory Allocator

2011-10-11 Thread Arnd Bergmann
On Tuesday 11 October 2011, Andrew Morton wrote: Russell's going to hate me, but... I do know that he had substantial objections to at least earlier versions of this, and he is a guy who knows of what he speaks. So I would want to get a nod from rmk on this work before proceeding. If

kernel settings and modules for radio tuner

2011-10-11 Thread Will Milspec
Hi all, Sorry if this is the wrong place for this question, but I've had trouble finding recent information about fm card support in light of recent kernel changes. Context = I use an fm card (WINTV-GO fm) for listening/recording radio. It's a great tool for building fair-use

kernel settings and modules for radio tuner

2011-10-11 Thread Will Milspec
Hi all, Sorry if this is the wrong place for this question, but I've had trouble finding recent information about fm card support in light of recent kernel changes. Context = I use an fm card (WINTV-GO fm) for listening/recording radio. It's a great tool for building fair-use

[RFC 0/3] omap3isp: add BT656 support

2011-10-11 Thread Enrico Butera
This patch series add support for BT656 to omap3isp. It is based on patches from Deepthy Ravi and Javier Martinez Canillas. To be applied on top of omap3isp-omap3isp-yuv branch at: git.linuxtv.org/pinchartl/media.git Enrico Butera (2): omap3isp: ispvideo: export isp_video_mbus_to_pix

[RFC 1/3] omap3isp: ccdc: Add interlaced field mode to platform data

2011-10-11 Thread Enrico Butera
From: Javier Martinez Canillas martinez.jav...@gmail.com The fldmode field from the CCDC_SYN_MODE register configure the ISP CCDC between progresive and interlaced mode. Adding this field to the platform data, allows boards to configure accordingly. Signed-off-by: Javier Martinez Canillas

[RFC 2/3] omap3isp: ispvideo: export isp_video_mbus_to_pix

2011-10-11 Thread Enrico Butera
This function will be used in ispccdc. Signed-off-by: Enrico Butera ebut...@users.berlios.de --- drivers/media/video/omap3isp/ispvideo.c |2 +- drivers/media/video/omap3isp/ispvideo.h |4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git

[RFC 3/3] omap3isp: ispccdc: configure CCDC registers and add BT656 support

2011-10-11 Thread Enrico Butera
This is a port of the following Deepthy Ravi patches: [PATCH 5/8] ispccdc: Configure CCDC registers [PATCH 6/8] ispccdc: Add support for BT656 interface Signed-off-by: Enrico Butera ebut...@users.berlios.de --- drivers/media/video/omap3isp/ispccdc.c | 143 ++-

Re: Cannot configure second Kodicom 4400R

2011-10-11 Thread Allan Macdonald
On Mon, Oct 10, 2011 at 5:17 PM, Patrick Dickey pdickeyb...@gmail.com wrote: Hi there Allan, I'm not familiar with the card (so you'll want to defer to someone else if their answer differs from mine).  It looks like video0 and video1 are assigned to the first card, and video2 and video3 are

cron job: media_tree daily build: WARNINGS

2011-10-11 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:Tue Oct 11 19:00:15 CEST 2011 git hash:e30528854797f057aa6ffb6dc9f890e923c467fd gcc version: i686-linux-gcc

Re: [GIT PATCHES FOR 3.2] cx23885 alsa cleaned and prepaired

2011-10-11 Thread Steven Toth
It's been a long time since cx23885-alsa pull was requested. To speed things up I created a git branch where I put the patches. are available in the git repository at: ...  git://linuxtv.org/liplianin/media_tree.git cx23885-alsa-clean-2 Thank you for working on this Igor. I most certainly

Re: [patch] Staging: cx25821: off by on in cx25821_vidioc_s_input()

2011-10-11 Thread Mauro Carvalho Chehab
Hi Dan, Em 07-10-2011 10:26, Dan Carpenter escreveu: If i is 2 then when we call cx25821_video_mux() we'd end up going past the end of the cx25821_boards[dev-board]-input[]. The INPUT() macro obfuscates what's going on in that function so it's a bit hard to follow. Signed-off-by: Dan

Re: [RFC 0/3] omap3isp: add BT656 support

2011-10-11 Thread Gary Thomas
On 2011-10-11 09:08, Enrico Butera wrote: This patch series add support for BT656 to omap3isp. It is based on patches from Deepthy Ravi and Javier Martinez Canillas. To be applied on top of omap3isp-omap3isp-yuv branch at: git.linuxtv.org/pinchartl/media.git Enrico Butera (2): omap3isp:

Re: [RFC 0/3] omap3isp: add BT656 support

2011-10-11 Thread Enrico
On Wed, Oct 12, 2011 at 12:04 AM, Gary Thomas g...@mlbassoc.com wrote: Sorry, this just locks up on boot for me, immediately after finding the TVP5150. I applied your changes to the above tree  commit 658d5e03dc1a7283e5119cd0e9504759dbd3d912  Author: Laurent Pinchart

Re: [RFC 0/3] omap3isp: add BT656 support

2011-10-11 Thread Gary Thomas
On 2011-10-11 16:25, Enrico wrote: On Wed, Oct 12, 2011 at 12:04 AM, Gary Thomasg...@mlbassoc.com wrote: Sorry, this just locks up on boot for me, immediately after finding the TVP5150. I applied your changes to the above tree commit 658d5e03dc1a7283e5119cd0e9504759dbd3d912 Author: Laurent

Re: [RFC 0/3] omap3isp: add BT656 support

2011-10-11 Thread Gary Thomas
On 2011-10-11 16:34, Gary Thomas wrote: On 2011-10-11 16:25, Enrico wrote: On Wed, Oct 12, 2011 at 12:04 AM, Gary Thomasg...@mlbassoc.com wrote: Sorry, this just locks up on boot for me, immediately after finding the TVP5150. I applied your changes to the above tree commit

Re: [RFC 0/3] omap3isp: add BT656 support

2011-10-11 Thread Enrico
On Wed, Oct 12, 2011 at 12:36 AM, Gary Thomas g...@mlbassoc.com wrote: On 2011-10-11 16:34, Gary Thomas wrote: On 2011-10-11 16:25, Enrico wrote: On Wed, Oct 12, 2011 at 12:04 AM, Gary Thomasg...@mlbassoc.com wrote: Sorry, this just locks up on boot for me, immediately after finding the

Re: [GIT PATCHES FOR 3.2] cx23885 alsa cleaned and prepaired

2011-10-11 Thread Igor M. Liplianin
В сообщении от 11 октября 2011 21:17:57 автор Steven Toth написал: It's been a long time since cx23885-alsa pull was requested. To speed things up I created a git branch where I put the patches. are available in the git repository at: ... git://linuxtv.org/liplianin/media_tree.git