[PATCH] [media] saa7134: fix spelling of detach in label

2012-07-02 Thread Peter Meerwald
Signed-off-by: Peter Meerwald --- drivers/media/video/saa7134/saa7134-dvb.c | 82 ++--- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/drivers/media/video/saa7134/saa7134-dvb.c b/drivers/media/video/saa7134/saa7134-dvb.c index 5dfd826..cc7f3d6 100644 --

Re: DVB core enhancements - comments please?

2012-07-02 Thread Antti Palosaari
On 06/29/2012 05:28 PM, Mauro Carvalho Chehab wrote: Em 29-06-2012 08:24, Patrick Boettcher escreveu: On Friday 29 June 2012 08:03:16 Antti Palosaari wrote: On 06/29/2012 07:32 AM, Mauro Carvalho Chehab wrote: Em 27-06-2012 21:33, Antti Palosaari escreveu: SDR - Softaware Defined Radio suppor

Re: Question about V4L2_MEMORY_USERPTR

2012-07-02 Thread Hans Petter Selasky
Hi Laurent and Sakari, For the sake of the matter, here is the driver in question: http://www.freshports.org/multimedia/webcamd/ Under native-Linux (kernel mode): I've looked at the linux-media code a bit and it appears that video data is copied directly from the USB callback functions to the d

cron job: media_tree daily build: ERRORS

2012-07-02 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:Mon Jul 2 19:00:19 CEST 2012 git hash:704a28e88ab6c9cfe393ae626b612cab8b46028e gcc version: i686-linux-gcc (GC

Re: [RFC PATCH 1/6] videodev2.h: add VIDIOC_ENUM_FREQ_BANDS.

2012-07-02 Thread Mauro Carvalho Chehab
Em 02-07-2012 11:15, Hans Verkuil escreveu: > From: Hans Verkuil > > Add a new ioctl to enumerate the supported frequency bands of a tuner. > > Signed-off-by: Hans Verkuil > --- > include/linux/videodev2.h | 36 ++-- > 1 file changed, 26 insertions(+), 10 de

pctv452e

2012-07-02 Thread Steve Hill
I've been using a Technotrend TT 3600 USB DVB-S2 receiver for a couple of years, which has (largely) been working fine under the S2-liplianin pctv452e driver. I've been aware of a lot of documented problems with running this receiver under the 3.x kernel, so I've stuck with the 2.6 series ke

[RFC v2] implicit drm synchronization wip with dma-buf

2012-07-02 Thread Maarten Lankhorst
Well, V2 time! I was hinted to look at ttm_execbuf_util, and it does indeed contain some nice code. My goal was to extend dma-buf in a generic way now, some elements from v1 are remaining, most notably a dma-buf used for syncing. However it is expected now that dma-buf syncing will work in a ve

Re: [RFC PATCH 0/6] Add frequency band information

2012-07-02 Thread halli manjunatha
Hi, This looks good to me Acked-by: Manjunatha Halli Regards Manju On Mon, Jul 2, 2012 at 9:42 AM, Hans de Goede wrote: > > Hi, > > Series looks good to me, ack series: > Acked-by: Hans de Goede > > Regards, > > Hans > > > On 07/02/2012 04:15 PM, Hans Verkuil wrote: >> >> Hi all, >> >> This

Re: [RFC PATCH 0/6] Add frequency band information

2012-07-02 Thread Hans de Goede
Hi, Series looks good to me, ack series: Acked-by: Hans de Goede Regards, Hans On 07/02/2012 04:15 PM, Hans Verkuil wrote: Hi all, This patch series adds support for the new VIDIOC_ENUM_FREQ_BANDS ioctl that tells userspace if a tuner supports multiple frequency bands. This API is based on

[RFC PATCH 6/6] radio-cadet: implement frequency band enumeration.

2012-07-02 Thread Hans Verkuil
From: Hans Verkuil Signed-off-by: Hans Verkuil --- drivers/media/radio/radio-cadet.c | 129 + 1 file changed, 72 insertions(+), 57 deletions(-) diff --git a/drivers/media/radio/radio-cadet.c b/drivers/media/radio/radio-cadet.c index d1fb427..946a4d7 100644

[RFC PATCH 3/6] v4l2 spec: add VIDIOC_ENUM_FREQ_BANDS documentation.

2012-07-02 Thread Hans Verkuil
From: Hans Verkuil Signed-off-by: Hans Verkuil --- Documentation/DocBook/media/v4l/compat.xml | 12 ++ Documentation/DocBook/media/v4l/v4l2.xml |6 + .../DocBook/media/v4l/vidioc-enum-freq-bands.xml | 152 .../DocBook/media/v4l/vidioc-g-frequency.

[RFC PATCH 4/6] radio-cadet: upgrade to latest frameworks.

2012-07-02 Thread Hans Verkuil
From: Hans Verkuil - add control framework - use core locking - use V4L2_TUNER_CAP_LOW - remove volume support: there is no hardware volume control Signed-off-by: Hans Verkuil --- drivers/media/radio/radio-cadet.c | 243 + 1 file changed, 83 insertions(+),

[RFC PATCH 2/6] v4l2: add core support for the new VIDIOC_ENUM_FREQ_BANDS ioctl.

2012-07-02 Thread Hans Verkuil
From: Hans Verkuil This adds the usual core support code for this new ioctl. Signed-off-by: Hans Verkuil --- drivers/media/video/v4l2-compat-ioctl32.c |1 + drivers/media/video/v4l2-dev.c|1 + drivers/media/video/v4l2-ioctl.c | 21 + include/m

[RFC PATCH 5/6] radio-cadet: fix RDS handling.

2012-07-02 Thread Hans Verkuil
From: Hans Verkuil The current RDS code suffered from bit rot. Clean it up and make it work again. Signed-off-by: Hans Verkuil --- drivers/media/radio/radio-cadet.c | 56 ++--- 1 file changed, 39 insertions(+), 17 deletions(-) diff --git a/drivers/media/radio

[RFC PATCH 1/6] videodev2.h: add VIDIOC_ENUM_FREQ_BANDS.

2012-07-02 Thread Hans Verkuil
From: Hans Verkuil Add a new ioctl to enumerate the supported frequency bands of a tuner. Signed-off-by: Hans Verkuil --- include/linux/videodev2.h | 36 ++-- 1 file changed, 26 insertions(+), 10 deletions(-) diff --git a/include/linux/videodev2.h b/include/l

[RFC PATCH 0/6] Add frequency band information

2012-07-02 Thread Hans Verkuil
Hi all, This patch series adds support for the new VIDIOC_ENUM_FREQ_BANDS ioctl that tells userspace if a tuner supports multiple frequency bands. This API is based on earlier attempts: http://www.spinics.net/lists/linux-media/msg48391.html http://www.spinics.net/lists/linux-media/msg48435.html

Re: [RFC] Support for 'Coda' video codec IP.

2012-07-02 Thread javier Martin
On 2 July 2012 13:13, javier Martin wrote: > On 2 July 2012 12:54, Sascha Hauer wrote: >> On Mon, Jul 02, 2012 at 12:36:46PM +0200, javier Martin wrote: >>> Hi Sascha, >>> I almost have a final version ready which includes multi-instance >>> support (not tested though) [1]. As I stated, we assume

[GIT PULL FOR v3.6] DVB USB v2

2012-07-02 Thread Antti Palosaari
Here it is finally - quite totally rewritten DVB-USB-framework. I haven't got almost any feedback so far... regards Antti The following changes since commit 6887a4131da3adaab011613776d865f4bcfb5678: Linux 3.5-rc5 (2012-06-30 16:08:57 -0700) are available in the git repository at: git://

Re: hacking MT9P031 (LI-5M03) driver in Ubuntu 12.04 on BeagleBoard xM?

2012-07-02 Thread Laurent Pinchart
Hi Chris, On Thursday 28 June 2012 21:41:16 Chris MacGregor wrote: > On 06/27/2012 02:30 AM, Laurent Pinchart wrote: > > On Thursday 21 June 2012 09:38:11 Chris MacGregor wrote: > >> ... > >> > >> Some of the issues: > >> > >> 1. To get it working, I had to patch in the Aptina driver mods for bo

[GIT PULL FOR v3.6] cx88: convert to the control framework

2012-07-02 Thread Hans Verkuil
Hi all! I didn't get any comments since my RFC post: http://www.spinics.net/lists/linux-media/msg48764.html So it's time to send out the pull request. Regards, Hans The following changes since commit 704a28e88ab6c9cfe393ae626b612cab8b46028e: [media] drxk: prevent doing something wr

Re: [PATCH dvb-utils] proper dvb-t scan data for Czech Republic

2012-07-02 Thread Christoph Pfister
Pushed, thanks. 2012/6/26 Jiri Slaby : > BTW I would appreciate if you move also dvb-utils to GIT. hg wastes our > time. I don't mind, but I won't spend time on that. > -- > js > suse labs Christoph -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a messa

Re: [RFC] Support for 'Coda' video codec IP.

2012-07-02 Thread javier Martin
On 2 July 2012 12:54, Sascha Hauer wrote: > On Mon, Jul 02, 2012 at 12:36:46PM +0200, javier Martin wrote: >> Hi Sascha, >> I almost have a final version ready which includes multi-instance >> support (not tested though) [1]. As I stated, we assumed the extra >> effort of looking at your code in [

Re: [RFC] Support for 'Coda' video codec IP.

2012-07-02 Thread Sascha Hauer
On Mon, Jul 02, 2012 at 12:36:46PM +0200, javier Martin wrote: > Hi Sascha, > I almost have a final version ready which includes multi-instance > support (not tested though) [1]. As I stated, we assumed the extra > effort of looking at your code in [2] in order to provide a mechanism > that preserv

Re: [RFC] Support for 'Coda' video codec IP.

2012-07-02 Thread javier Martin
Hi Sascha, I almost have a final version ready which includes multi-instance support (not tested though) [1]. As I stated, we assumed the extra effort of looking at your code in [2] in order to provide a mechanism that preserves compatibility between VPUs in i.MX21, i.MX51 and i.MX53. This is the o

Re: Recent update to page_alloc.c causing a crash

2012-07-02 Thread Prabhakar Lad
Hi Hans, On Mon, Jul 2, 2012 at 1:37 PM, Prabhakar Lad wrote: > Hi Hans, > > On Mon, Jul 2, 2012 at 1:19 PM, Hans Verkuil wrote: >> On Mon 2 July 2012 09:25:08 Prabhakar Lad wrote: >>> Hi, >>> >>> Recently when I updated my driver to 3.5 from 3.3, I am observing that >>> my driver is failing for

[GIT PULL FOR v3.6] rtl2832 and misc changes

2012-07-02 Thread Antti Palosaari
Mauro, That set contains RTL2832 DVB-T demodulator driver by Thomas Mair which was requested earlier too but was not merged. The other part is tda10071 and a8293 changes, two small bug fixes that I *do not want* for 3.5 but 3.6 as those are not critical. regards Antti The following changes

Re: Question about V4L2_MEMORY_USERPTR

2012-07-02 Thread Laurent Pinchart
On Sunday 01 July 2012 17:00:58 Sakari Ailus wrote: > On Fri, Mar 23, 2012 at 08:19:45AM +0100, Hans Petter Selasky wrote: > > Hi, > > > > I have a question about V4L2_MEMORY_USERPTR: > > > > From which context are the kernel's "copy_to_user()" functions called in > > relation to V4L2_MEMORY_USER

[GIT PULL FOR v3.6] Core and vb2 enhancements

2012-07-02 Thread Hans Verkuil
Hi all, This is the pull request for the RFC patch series adding core and vb2 enhancements. Changes since the RFCv3 (http://www.spinics.net/lists/linux-media/msg49583.html): - Added vb2_fop_get_unmapped_area (thanks to Scott Jiang for catching that one). - Added vb2_ops_wait_prepare/finish hel

RE: Betr: RE: dib0700 can't enable debug messages

2012-07-02 Thread Olivier GRENIE
Hello, indeed if you are using media build repository, you just need to do make menuconfig, config, gconfig or xconfig in the media build directory and then select "Enable extended debug support for all DVB-USB devices". No need to build the full kernel with media build. regards, Olivier _

Re: Recent update to page_alloc.c causing a crash

2012-07-02 Thread Prabhakar Lad
Hi Hans, On Mon, Jul 2, 2012 at 1:19 PM, Hans Verkuil wrote: > On Mon 2 July 2012 09:25:08 Prabhakar Lad wrote: >> Hi, >> >> Recently when I updated my driver to 3.5 from 3.3, I am observing that >> my driver is failing for dma_alloc_coherent, >> when I traced it, I see lots of changes for MM in

Re: Recent update to page_alloc.c causing a crash

2012-07-02 Thread Hans Verkuil
On Mon 2 July 2012 09:25:08 Prabhakar Lad wrote: > Hi, > > Recently when I updated my driver to 3.5 from 3.3, I am observing that > my driver is failing for dma_alloc_coherent, > when I traced it, I see lots of changes for MM in 3.5 release any > Ideas why this could be happening? > Here is the c

Recent update to page_alloc.c causing a crash

2012-07-02 Thread Prabhakar Lad
Hi, Recently when I updated my driver to 3.5 from 3.3, I am observing that my driver is failing for dma_alloc_coherent, when I traced it, I see lots of changes for MM in 3.5 release any Ideas why this could be happening? Here is the case my driver works fine for 7 runs of the application for 8th