RE: [PATCH] v4l2: Fix documentation of the codec device controls

2011-08-02 Thread Kamil Debski
Hi, I am sorry, I did run make htmldocs and got no errors. So I have to be doing something wrong building the docs. Could you tell me how do you build the documentation? Knowing this I could check the next patch to make sure it is error free. Best wishes, -- Kamil Debski Linux Platform Group

Re: [PATCH v3] V4L: add two new ioctl()s for multi-size videobuffer management

2011-08-02 Thread Sakari Ailus
Guennadi Liakhovetski wrote: On Mon, 1 Aug 2011, Sakari Ailus wrote: Guennadi Liakhovetski wrote: On Tue, 26 Jul 2011, Hans Verkuil wrote: On Tuesday, July 26, 2011 13:44:28 Sakari Ailus wrote: Hi Hans and Guennadi, snip I realized that it is not clear from the documentation whether it

Re: [PATCH v3] V4L: add two new ioctl()s for multi-size videobuffer management

2011-08-02 Thread Guennadi Liakhovetski
On Thu, 28 Jul 2011, Hans Verkuil wrote: On Thursday, July 28, 2011 06:11:38 Pawel Osciak wrote: Hi Guennadi, On Wed, Jul 20, 2011 at 01:43, Guennadi Liakhovetski g.liakhovet...@gmx.de wrote: A possibility to preallocate and initialise buffers of different sizes in V4L2 is

Re: [PATCH] drivers: support new Siano tuner devices.

2011-08-02 Thread BOUWSMA Barry
On k (kedd) 19.júl (július) 2011, 14:21, Doron Cohen wrote: This is the first time I ever post changes to linux kernel, so excuse me if I have errors in the process. As Siano team member, I would like to update the drivers for Siano devices with the latest and greatest fixes. Unfortunately

Re: [PATCH v3] V4L: add two new ioctl()s for multi-size videobuffer management

2011-08-02 Thread Guennadi Liakhovetski
On Tue, 2 Aug 2011, Sakari Ailus wrote: Guennadi Liakhovetski wrote: On Mon, 1 Aug 2011, Sakari Ailus wrote: Guennadi Liakhovetski wrote: On Tue, 26 Jul 2011, Hans Verkuil wrote: On Tuesday, July 26, 2011 13:44:28 Sakari Ailus wrote: Hi Hans and Guennadi, snip I realized

Re: [PATCH v3] V4L: add two new ioctl()s for multi-size videobuffer management

2011-08-02 Thread Hans Verkuil
On Thu, 28 Jul 2011, Hans Verkuil wrote: On Thursday, July 28, 2011 06:11:38 Pawel Osciak wrote: Hi Guennadi, On Wed, Jul 20, 2011 at 01:43, Guennadi Liakhovetski g.liakhovet...@gmx.de wrote: A possibility to preallocate and initialise buffers of different sizes in V4L2 is

[PATCH v2] Staging: cx25821: fix coding style issues

2011-08-02 Thread Leonid V. Fedorenchik
Fix too long lines in cx25821-audio.h Fix wrong brace placement in cx25821-cards.c, cx25821-core.c, and cx25821-i2c.c Use DEFINE_PCI_DEVICE_TABLE for cx25821_pci_tbl. Move EXPORT_SYMBOL(cx25821_set_gpiopin_direction) to the right place. Delete file cx25821-gpio.h since it is not used. Get rid of

Buffer sharing proof-of-concept

2011-08-02 Thread Marek Szyprowski
Hello Everyone, This patchset introduces the proof-of-concept infrastructure for buffer sharing between multiple devices using file descriptors. The infrastructure has been integrated with V4L2 framework, more specifically videobuf2 and two S5P drivers FIMC (capture interface) and TV

[PATCH 1/6] drivers: base: add shared buffer framework

2011-08-02 Thread Marek Szyprowski
From: Tomasz Stanislawski t.stanisl...@samsung.com This patch adds the framework for buffer sharing via a file descriptor. A driver that use shared buffer (shrbuf) can export a memory description by transforming it into a file descriptor. The reverse operation (import) is done by obtaining a

[PATCH 2/6] v4l: add buffer exporting via shrbuf

2011-08-02 Thread Marek Szyprowski
From: Tomasz Stanislawski t.stanisl...@samsung.com This patch adds extension to V4L2 api. It allow to export a mmap buffer as file descriptor. New ioctl VIDIOC_EXPBUF is added. It takes a buffer offset used by mmap and return a file descriptor on success. Signed-off-by: Tomasz Stanislawski

[PATCH 3/6] v4l: vb2: add support for shared buffer (shrbuf)

2011-08-02 Thread Marek Szyprowski
From: Tomasz Stanislawski t.stanisl...@samsung.com This patch adds support for SHRBUF memory type in videbuf2. It also provides implementation of VIDIOC_EXPOBUF ioctl within videobuf2. Signed-off-by: Tomasz Stanislawski t.stanisl...@samsung.com Signed-off-by: Kyungmin Park

[PATCH 4/6] v4l: vb2: integrate dma-contig allocator with shrbuf

2011-08-02 Thread Marek Szyprowski
From: Tomasz Stanislawski t.stanisl...@samsung.com Signed-off-by: Tomasz Stanislawski t.stanisl...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com Signed-off-by: Marek Szyprowski m.szyprow...@samsung.com --- drivers/media/video/videobuf2-dma-contig.c | 90

[PATCH 5/6] v4l: fimc: integrate capture i-face with shrbuf

2011-08-02 Thread Marek Szyprowski
From: Tomasz Stanislawski t.stanisl...@samsung.com Signed-off-by: Tomasz Stanislawski t.stanisl...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com Signed-off-by: Marek Szyprowski m.szyprow...@samsung.com --- drivers/media/video/s5p-fimc/fimc-capture.c | 11 ++- 1

[PATCH 6/6] v4l: s5p-tv: mixer: integrate with shrbuf

2011-08-02 Thread Marek Szyprowski
From: Tomasz Stanislawski t.stanisl...@samsung.com Signed-off-by: Tomasz Stanislawski t.stanisl...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com Signed-off-by: Marek Szyprowski m.szyprow...@samsung.com --- drivers/media/video/s5p-tv/mixer_video.c | 11 ++- 1 files

[PATCH v2 0/2] Frame synchronisation events and support for them in the OMAP 3 ISP driver

2011-08-02 Thread Sakari Ailus
Hi all, This is the second version of the frame synchronisation patchset which contains fixes based on the comments from Laurent. The patches are on top of this tree which contains acked patches: http://linuxtv.org/git/sailus/media_tree.git media-for-3.1-misc-1 Shortlog is available here:

[PATCH v2 1/2] v4l: events: Define V4L2_EVENT_FRAME_SYNC

2011-08-02 Thread Sakari Ailus
Define a frame sync event to tell user space when the reception of a frame starts. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi --- Documentation/DocBook/media/v4l/vidioc-dqevent.xml | 22 .../DocBook/media/v4l/vidioc-subscribe-event.xml | 16 ++

[PATCH v2 2/2] omap3isp: ccdc: Make frame start event generic

2011-08-02 Thread Sakari Ailus
The ccdc block in the omap3isp produces frame start events. These events were previously specific to the omap3isp. Make them generic. Also add sequence number to the frame. This is stored to the id field. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi --- Documentation/video4linux/omap3isp.txt

Re: [PATCH v3] V4L: add two new ioctl()s for multi-size videobuffer management

2011-08-02 Thread Sakari Ailus
Guennadi Liakhovetski wrote: On Tue, 2 Aug 2011, Sakari Ailus wrote: Guennadi Liakhovetski wrote: On Mon, 1 Aug 2011, Sakari Ailus wrote: Guennadi Liakhovetski wrote: On Tue, 26 Jul 2011, Hans Verkuil wrote: On Tuesday, July 26, 2011 13:44:28 Sakari Ailus wrote: Hi Hans and Guennadi,

Re: [PATCH v3] V4L: add two new ioctl()s for multi-size videobuffer management

2011-08-02 Thread Guennadi Liakhovetski
On Tue, 2 Aug 2011, Sakari Ailus wrote: Guennadi Liakhovetski wrote: On Tue, 2 Aug 2011, Sakari Ailus wrote: Guennadi Liakhovetski wrote: On Mon, 1 Aug 2011, Sakari Ailus wrote: Guennadi Liakhovetski wrote: On Tue, 26 Jul 2011, Hans Verkuil wrote: On Tuesday, July 26, 2011

Re: [Linaro-mm-sig] Buffer sharing proof-of-concept

2011-08-02 Thread KyongHo Cho
Hi. On Tue, Aug 2, 2011 at 6:48 PM, Marek Szyprowski m.szyprow...@samsung.com wrote: Hello Everyone, This patchset introduces the proof-of-concept infrastructure for buffer sharing between multiple devices using file descriptors. The infrastructure has been integrated with V4L2 framework,

Re: [Linaro-mm-sig] Buffer sharing proof-of-concept

2011-08-02 Thread Marek Szyprowski
Hello, On 2011-08-02 13:59, KyongHo Cho wrote: On Tue, Aug 2, 2011 at 6:48 PM, Marek Szyprowski m.szyprow...@samsung.com wrote: Hello Everyone, This patchset introduces the proof-of-concept infrastructure for buffer sharing between multiple devices using file descriptors. The infrastructure

[GIT PULL FOR v3.2] adp1653 and event documentation fixes and frame sync event

2011-08-02 Thread Sakari Ailus
Hi Mauro, This pull request contains fixes to adp1653 driver and event documentation besides the new frame sync event definition and support for it to the OMAP 3 ISP driver. The following changes since commit 449d1a0ad1732476d394fb2b885092a5c554f983: [media] anysee: use multi-frontend (MFE)

Re: [PATCH] v4l2: Fix documentation of the codec device controls

2011-08-02 Thread Randy Dunlap
On Tue, 02 Aug 2011 09:57:23 +0200 Kamil Debski wrote: Hi, I am sorry, I did run make htmldocs and got no errors. So I have to be doing something wrong building the docs. Could you tell me how do you build the documentation? Knowing this I could check the next patch to make sure it is

vp702x

2011-08-02 Thread Florian Mickler
Hi Mauro! Hi Patrick! I realized this morning, that I broke vp702x (if it was working before) with my last patchseries. Sorry. :( I'm gonna follow up on this mail with a patch to hopefully fix it, but if nobody can test it, I'd say to rather revert my patchseries for v3.1 . It will then still

Re: [Linaro-mm-sig] Buffer sharing proof-of-concept

2011-08-02 Thread Jordan Crouse
On 08/02/2011 03:48 AM, Marek Szyprowski wrote: Hello Everyone, This patchset introduces the proof-of-concept infrastructure for buffer sharing between multiple devices using file descriptors. The infrastructure has been integrated with V4L2 framework, more specifically videobuf2 and two S5P

[PATCH] [media] vp702x: fix buffer handling

2011-08-02 Thread Florian Mickler
In my previous change to this driver, I was not aware that dvb_usb_device_init calls the frontend_attach routine which needs a transfer buffer. So we can not setup anything private in the probe routine beforehand but have to allocate when needed. This means also that we cannot use a private buffer

[PATCH v2] v4l2: Fix documentation of the codec device controls

2011-08-02 Thread Kamil Debski
Fixed missing ids of the codec controls description in the controls.xml file. Signed-off-by: Kamil Debski k.deb...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com Reported-by: Randy Dunlap rdun...@xenotime.net --- Hi, This patch fixes the problem with codec controls

RE: [PATCH] v4l2: Fix documentation of the codec device controls

2011-08-02 Thread Kamil Debski
Hi, From: Randy Dunlap [mailto:rdun...@xenotime.net] On Tue, 02 Aug 2011 09:57:23 +0200 Kamil Debski wrote: Hi, I am sorry, I did run make htmldocs and got no errors. So I have to be doing something wrong building the docs. Could you tell me how do you build the documentation?

Re: [PATCH v2] v4l2: Fix documentation of the codec device controls

2011-08-02 Thread Randy Dunlap
On Tue, 02 Aug 2011 17:53:49 +0200 Kamil Debski wrote: Fixed missing ids of the codec controls description in the controls.xml file. Signed-off-by: Kamil Debski k.deb...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com Reported-by: Randy Dunlap rdun...@xenotime.net ---

Re: [Linaro-mm-sig] [PATCH 1/6] drivers: base: add shared buffer framework

2011-08-02 Thread Clark, Rob
On Tue, Aug 2, 2011 at 4:49 AM, Marek Szyprowski m.szyprow...@samsung.com wrote: From: Tomasz Stanislawski t.stanisl...@samsung.com +/** + * shrbuf_import() - obtain shrbuf structure from a file descriptor + * @fd:        file descriptor + * + * The function obtains an instance of a  

[cron job] v4l-dvb daily build: ERRORS

2011-08-02 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 Aug 2 19:01:34 CEST 2011 git hash:46540f7ac646ada7f22912ea7ea9b761ff5c4718 gcc version: i686-linux-gcc (GCC)

Re: [PATCH] add support for the dvb-t part of CT-3650 v3

2011-08-02 Thread Jose Alberto Reguero
On Jueves, 28 de Julio de 2011 21:25:01 Jose Alberto Reguero escribió: On Miércoles, 27 de Julio de 2011 21:22:26 Antti Palosaari escribió: On 07/24/2011 12:45 AM, Jose Alberto Reguero wrote: Read without write work as with write. Attached updated patch. ttusb2-6.diff -

Bug: Kernel oops with Kopete due to DVB device

2011-08-02 Thread Laurent Grawet
Bug initially submitted to https://bugs.kde.org/show_bug.cgi?id=279202 Hello, Kopete crash and kernel oopses when opening Settings - Configure dialog due to presence of DVB-S PCI card (av7110) as /dev/video0. This happens everytime I try to configure Kopete in presence of my DVB PCI card. (see

Re: [PATCH v3] V4L: add two new ioctl()s for multi-size videobuffer management

2011-08-02 Thread Sakari Ailus
On Wed, Jul 27, 2011 at 09:11:38PM -0700, Pawel Osciak wrote: Hi Guennadi, Hi Pawel, On Wed, Jul 20, 2011 at 01:43, Guennadi Liakhovetski g.liakhovet...@gmx.de wrote: A possibility to preallocate and initialise buffers of different sizes in V4L2 is required for an efficient implementation

RE: [PATCH] drivers: support new Siano tuner devices.

2011-08-02 Thread Doron Cohen
Hi Barry, One thing I need to check before I approve and even extent this change: What happens if the smsdvb module does not exists. I assume nothing happens since we are not checking the return code and therefore everything will work as if this call was not exist, but I would like to check that