[PATCH v9 5/6] [media] s5p-mfc: MFCv6 register definitions

2012-10-01 Thread Arun Kumar K
From: Jeongtae Park Adds register definitions for MFC v6.x firmware Signed-off-by: Jeongtae Park Signed-off-by: Janghyuck Kim Signed-off-by: Jaeryul Oh Signed-off-by: Naveen Krishna Chatradhi Signed-off-by: Arun Kumar K --- drivers/media/platform/s5p-mfc/regs-mfc-v6.h | 408 ++

[PATCH v9 4/6] [media] s5p-mfc: Add MFC variant data to device context

2012-10-01 Thread Arun Kumar K
MFC variant data replaces various macros used in the driver which will change in a different version of MFC hardware. Also does a cleanup of MFC context structure and common files. Signed-off-by: Jeongtae Park Signed-off-by: Janghyuck Kim Signed-off-by: Jaeryul Oh Signed-off-by: Naveen Krishna

[PATCH v9 2/6] [media] v4l: Add control definitions for new H264 encoder features

2012-10-01 Thread Arun Kumar K
New controls are added for supporting H264 encoding features like - MVC frame packing - Flexible macroblock ordering - Arbitrary slice ordering - Hierarchical coding Signed-off-by: Jeongtae Park Signed-off-by: Naveen Krishna Chatradhi Signed-off-by: Arun Kumar K --- Documentation/DocBook/media

[PATCH v9 1/6] [media] v4l: Add fourcc definitions for new formats

2012-10-01 Thread Arun Kumar K
Adds the following new fourcc definitions. For multiplanar YCbCr - V4L2_PIX_FMT_NV21M - V4L2_PIX_FMT_NV12MT_16X16 and compressed formats - V4L2_PIX_FMT_H264_MVC - V4L2_PIX_FMT_VP8 Signed-off-by: Jeongtae Park Signed-off-by: Naveen Krishna Chatradhi Signed-off-by:

[PATCH v9 0/6] Update MFC v4l2 driver to support MFC6.x

2012-10-01 Thread Arun Kumar K
The patchset adds support for MFCv6 firmware in s5p-mfc driver. The patches are rebased to the latest media-tree. Changelog v9 - Addressed review comments by Hans Verkuil http://www.mail-archive.com/linux-media@vger.kernel.org/msg53016.html Changelog v8 - Addressed review comments by Sylwester Na

Re: [GIT PULL FOR v3.7] Add missing vidioc-subdev-g-edid.xml.

2012-10-01 Thread Hans Verkuil
On Mon October 1 2012 20:24:56 Mauro Carvalho Chehab wrote: > Em Wed, 26 Sep 2012 10:33:51 +0200 > Hans Verkuil escreveu: > > > On Tue 25 September 2012 13:56:34 Hans Verkuil wrote: > > > Hi Mauro, > > > > > > As requested! > > > > I've respun this tree, fixing one documentation bug (the max va

[PATCH 1/2] v4l2-ioctl: add blocks check for VIDIOC_SUBDEV_G/S_EDID

2012-10-01 Thread Hans Verkuil
From: Hans Verkuil The maximum size of an EDID is 32768 bytes, which is 32768 / 128 = 256 blocks. Return -EINVAL if blocks > 256 to ensure that the memory allocation is sane. Signed-off-by: Hans Verkuil Reported-by: Dan Carpenter --- drivers/media/v4l2-core/v4l2-ioctl.c |4 1 file c

[PATCH 2/2] v4l2-ioctl: fix W=1 warnings

2012-10-01 Thread Hans Verkuil
From: Hans Verkuil Since the prt_names() macro is always called with an unsigned index the ((a) >= 0) condition is always true and gives a compiler warning when compiling with W=1. Rewrite the macro to avoid that warning, but cast the index to unsigned just in case it is ever called with a signe

[PATCH 0/2] Two v4l2-ioctl.c fixes

2012-10-01 Thread Hans Verkuil
The first ensures the memory allocation remains sane, the second fixes a bunch of warnings. Regards, Hans -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordo

Re: [PATCH 1/5] dma-buf: remove fallback for !CONFIG_DMA_SHARED_BUFFER

2012-10-01 Thread Thomas Hellstrom
On 10/01/2012 11:47 AM, Maarten Lankhorst wrote: Op 28-09-12 21:42, Thomas Hellstrom schreef: On 09/28/2012 04:14 PM, Maarten Lankhorst wrote: Hey, Op 28-09-12 14:41, Maarten Lankhorst schreef: Documentation says that code requiring dma-buf should add it to select, so inline fallbacks are not

Re: [RFCv1 API PATCH 2/4] v4l2-ctrls: add a notify callback.

2012-10-01 Thread Hans Verkuil
On Mon October 1 2012 22:01:38 Mauro Carvalho Chehab wrote: > Em Thu, 27 Sep 2012 08:44:25 +0200 > Hans Verkuil escreveu: > > > On Wed September 26 2012 12:50:11 Laurent Pinchart wrote: > > > > > + if (notify == NULL) { > > > > + ctrl->call_notify = 0; > > > > +

RE: [PATCH v7 5/6] [media] s5p-mfc: MFCv6 register definitions

2012-10-01 Thread Arun Kumar K
Hi Jeongtae Park, I have verified the calculation. The ALIGN macro is giving a wrong result and I used the macro DIV_ROUND_UP in the v8 patchset which is giving the proper result. Regards Arun On Tue, Oct 2, 2012 at 10:58 AM, JeongTae Park wrote: > Hi Arun and Sylwester, > > Please make sure th

Re: [PATCH v8 2/6] [media] v4l: Add control definitions for new H264 encoder features

2012-10-01 Thread Arun Kumar K
Hi Hans, Thank you for the review. Will make all the suggested changes and post updated patch. Regards Arun --- Original Message --- Sender : Hans Verkuil Date : Oct 01, 2012 19:57 (GMT+05:30) Title : Re: [PATCH v8 2/6] [media] v4l: Add control definitions for new H264 encoder featur

RE: [PATCH v7 5/6] [media] s5p-mfc: MFCv6 register definitions

2012-10-01 Thread JeongTae Park
Hi Arun and Sylwester, Please make sure that below calculations are same. > +#define S5P_FIMV_ME_BUFFER_SIZE_V6(imw, imh, mbw, mbh) \r > + (imw+63)/64) * 16) * \r > + (((imh+63)/64) * 16)) + \r > +

[PATCH 1/8] MAINTAINERS: add Michael Krufky as tda18271 maintainer

2012-10-01 Thread Michael Krufky
Signed-off-by: Michael Krufky --- MAINTAINERS | 10 ++ 1 file changed, 10 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 4e07521..b436561 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -7001,6 +7001,16 @@ T: git git://linuxtv.org/anttip/media_tree.git S: Maintaine

MAINTAINERS: add Michael Krufky's maintainer entries

2012-10-01 Thread Michael Krufky
The following changes since commit 34a6b7d093d8fe738ada191b36648d00bc18b7eb: [media] v4l2-ctrls: add a filter function to v4l2_ctrl_add_handler (2012-10-01 17:07:07 -0300) are available in the git repository at: git://git.linuxtv.org/mkrufky/tuners maintainers for you to fetch changes up to

[PATCH 8/8] MAINTAINERS: add Michael Krufky as tda827x maintainer

2012-10-01 Thread Michael Krufky
Signed-off-by: Michael Krufky --- MAINTAINERS | 10 ++ 1 file changed, 10 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 3d43576..a21df13 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -7061,6 +7061,16 @@ T: git git://linuxtv.org/mkrufky/tuners.git S: Maintained

[PATCH 7/8] MAINTAINERS: add Michael Krufky as tda8290 maintainer

2012-10-01 Thread Michael Krufky
Signed-off-by: Michael Krufky --- MAINTAINERS | 10 ++ 1 file changed, 10 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 1a4d7dd..3d43576 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -7061,6 +7061,16 @@ T: git git://linuxtv.org/mkrufky/tuners.git S: Maintained

[PATCH 5/8] MAINTAINERS: add Michael Krufky as lg2160 maintainer

2012-10-01 Thread Michael Krufky
Signed-off-by: Michael Krufky --- MAINTAINERS | 10 ++ 1 file changed, 10 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 99bb052..9ba5feb 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4349,6 +4349,16 @@ W: http://legousb.sourceforge.net/ S: Maintained F: dr

[PATCH 6/8] MAINTAINERS: add Michael Krufky as cxusb maintainer

2012-10-01 Thread Michael Krufky
Signed-off-by: Michael Krufky --- MAINTAINERS | 10 ++ 1 file changed, 10 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 9ba5feb..1a4d7dd 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -2559,6 +2559,16 @@ T: git git://linuxtv.org/anttip/media_tree.git S: Maintaine

[PATCH 4/8] MAINTAINERS: add Michael Krufky as lgdt3305 maintainer

2012-10-01 Thread Michael Krufky
Signed-off-by: Michael Krufky --- MAINTAINERS | 10 ++ 1 file changed, 10 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index fc4a6e4..99bb052 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4349,6 +4349,16 @@ W: http://legousb.sourceforge.net/ S: Maintained F: dr

[PATCH 3/8] MAINTAINERS: add Michael Krufky as mxl111sf maintainer

2012-10-01 Thread Michael Krufky
Signed-off-by: Michael Krufky --- MAINTAINERS | 10 ++ 1 file changed, 10 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index f3a39e8..fc4a6e4 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -2579,6 +2579,16 @@ T: git git://linuxtv.org/anttip/media_tree.git S: Maintaine

[PATCH 2/8] MAINTAINERS: add Michael Krufky as mxl5007t maintainer

2012-10-01 Thread Michael Krufky
Signed-off-by: Michael Krufky --- MAINTAINERS | 10 ++ 1 file changed, 10 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index b436561..f3a39e8 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4805,6 +4805,16 @@ T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.

Re: [PATCH RFC] em28xx: PCTV 520e switch tda18271 to tda18271c2dd

2012-10-01 Thread Michael Krufky
On Mon, Oct 1, 2012 at 9:58 PM, Devin Heitmueller wrote: > On Mon, Oct 1, 2012 at 8:52 PM, Antti Palosaari wrote: >> New drxk firmware download does not work with tda18271. Actual >> reason is more drxk driver than tda18271. Anyhow, tda18271c2dd >> will work as it does not do as much I/O during a

[PATCH] tda18271: prevent register access during attach() if delay_cal is set

2012-10-01 Thread Michael Krufky
if the configuration option 'delay_cal' is set, prevent any register access during attach(), delaying both IR & RF calibration until init() both module option 'cal' or configuration option 'rf_cal_on_startup' will override this delay. it makes no sense to mix 'delay_cal' with 'rf_cal_on_startup' a

Re: [PATCH RFC] em28xx: PCTV 520e switch tda18271 to tda18271c2dd

2012-10-01 Thread Devin Heitmueller
On Mon, Oct 1, 2012 at 8:52 PM, Antti Palosaari wrote: > New drxk firmware download does not work with tda18271. Actual > reason is more drxk driver than tda18271. Anyhow, tda18271c2dd > will work as it does not do as much I/O during attach than tda18271. > > Root of cause is tuner I/O during drx-

Re: [PATCH RFC] em28xx: PCTV 520e switch tda18271 to tda18271c2dd

2012-10-01 Thread Michael Krufky
On Mon, Oct 1, 2012 at 8:52 PM, Antti Palosaari wrote: > New drxk firmware download does not work with tda18271. Actual > reason is more drxk driver than tda18271. Anyhow, tda18271c2dd > will work as it does not do as much I/O during attach than tda18271. > > Root of cause is tuner I/O during drx-

RE: Current media_build doesn't succeed building on kernel 3.1.10

2012-10-01 Thread Michael West
Martin Burnicki wrote: Hi, > > Mauro Carvalho Chehab wrote: > > Em Sun, 30 Sep 2012 20:52:42 +0200 > > > > Martin Burnicki escreveu: > > > Hi all, > > > > > > is anybody out there who can help me with the media_build system? > > > I'm trying to build the current modules on an openSUSE 12.1 sy

[PATCH RFC] em28xx: PCTV 520e switch tda18271 to tda18271c2dd

2012-10-01 Thread Antti Palosaari
New drxk firmware download does not work with tda18271. Actual reason is more drxk driver than tda18271. Anyhow, tda18271c2dd will work as it does not do as much I/O during attach than tda18271. Root of cause is tuner I/O during drx-k asynchronous firmware download. request_firmware_nowait()... :-

Re: [PATCH RFC] dvb: LNA implementation changes

2012-10-01 Thread Antti Palosaari
Ping! u.data is defined __u32. Does it mean we could only use unsigned values when DVB API v5 ? If yes, I will change LNA according to that and use 32bit maximum as LNA_AUTO. struct dtv_property { __u32 cmd; __u32 reserved[3]; union { __u32 data;

[PATCH v2 3/5] iommu/omap: Make some definitions local

2012-10-01 Thread Ido Yariv
Move some of the definitions in plat/iommu.h that can be made local to either drivers/iommu or arch/arm/mach-omap2. This minimizes the number of global definitions once plat/iommu.h moves to platform_data/ as part of the single zImage effort. Signed-off-by: Ido Yariv --- arch/arm/mach-omap2/iomm

[PATCH v2 5/5] arm: omap: Move iopgtable header to drivers/iommu/

2012-10-01 Thread Ido Yariv
The iopgtable header file is only used by the iommu & iovmm drivers, so move it to drivers/iommu/, as part of the single zImage effort. Signed-off-by: Ido Yariv --- drivers/iommu/omap-iommu-debug.c | 3 +-- drivers/iommu/omap-iommu.c

[PATCH v2 4/5] arm: omap: Move iommu/iovmm headers to platform_data

2012-10-01 Thread Ido Yariv
Move iommu/iovmm headers from plat/ to platform_data/ as part of the single zImage work. Signed-off-by: Ido Yariv --- arch/arm/mach-omap2/devices.c | 2 +- arch/arm/mach-omap2/iommu2.c| 2 +- arch/arm/mach-omap2/omap-i

[PATCH v2 2/5] iommu/omap: Merge iommu2.h into iommu.h

2012-10-01 Thread Ido Yariv
Since iommu is not supported on OMAP1 and will not likely to ever be supported, merge plat/iommu2.h into iommu.h so only one file would have to move to platform_data/ as part of the single zImage effort. Signed-off-by: Ido Yariv --- arch/arm/plat-omap/include/plat/iommu.h | 88 +

[PATCH v2 1/5] [media] omap3isp: Fix compilation error in ispreg.h

2012-10-01 Thread Ido Yariv
Commit c49f34bc ("ARM: OMAP2+ Move SoC specific headers to be local to mach-omap2") moved omap34xx.h to mach-omap2. This broke omap3isp, as it includes omap34xx.h. Instead of moving omap34xx to platform_data, simply add the two definitions the driver needs and remove the include altogether. Signe

Re: [PATCH 05/14] media: add a V4L2 OF parser

2012-10-01 Thread Sylwester Nawrocki
On 09/27/2012 04:07 PM, Guennadi Liakhovetski wrote: > Add a V4L2 OF parser, implementing bindings, documented in > Documentation/devicetree/bindings/media/v4l2.txt. > > Signed-off-by: Guennadi Liakhovetski > --- > drivers/media/v4l2-core/Makefile |3 + > drivers/media/v4l2-core/v4l2-of.c

Re: [PATCH 1/2] of: add helper to parse display specs

2012-10-01 Thread Mitch Bradley
On 10/1/2012 10:25 AM, Stephen Warren wrote: > On 10/01/2012 01:16 PM, Mitch Bradley wrote: >> On 10/1/2012 6:53 AM, Stephen Warren wrote: >>> On 09/24/2012 09:35 AM, Steffen Trumtrar wrote: Parse a display-node with timings and hardware-specs from devictree. >>> diff --git a/Documentatio

Re: [PATCH 04/14] media: add V4L2 DT binding documentation

2012-10-01 Thread Sylwester Nawrocki
Hi Guennadi, On 09/27/2012 04:07 PM, Guennadi Liakhovetski wrote: > This patch adds a document, describing common V4L2 device tree bindings. > > Co-authored-by: Sylwester Nawrocki > Signed-off-by: Guennadi Liakhovetski > --- > Documentation/devicetree/bindings/media/v4l2.txt | 162 > +

Re: [PATCH 1/2] of: add helper to parse display specs

2012-10-01 Thread Stephen Warren
On 10/01/2012 01:16 PM, Mitch Bradley wrote: > On 10/1/2012 6:53 AM, Stephen Warren wrote: >> On 09/24/2012 09:35 AM, Steffen Trumtrar wrote: >>> Parse a display-node with timings and hardware-specs from devictree. >> >>> diff --git a/Documentation/devicetree/bindings/video/display >>> b/Documenta

Re: [RFCv1 API PATCH 2/4] v4l2-ctrls: add a notify callback.

2012-10-01 Thread Mauro Carvalho Chehab
Em Thu, 27 Sep 2012 08:44:25 +0200 Hans Verkuil escreveu: > On Wed September 26 2012 12:50:11 Laurent Pinchart wrote: > > > + if (notify == NULL) { > > > + ctrl->call_notify = 0; > > > + return; > > > + } > > > + /* Only one notifier is allowed. Should we ever need to support > >

Re: [GIT PULL FOR v3.7] all the rest patches!

2012-10-01 Thread Mauro Carvalho Chehab
Em Mon, 01 Oct 2012 22:38:07 +0300 Antti Palosaari escreveu: > On 10/01/2012 10:32 PM, Mauro Carvalho Chehab wrote: > > Em Sat, 29 Sep 2012 21:41:41 +0300 > > Antti Palosaari escreveu: > > > >> Updated, one new USB ID for RTL2832U. > >> > >> The following changes since commit > >> 8928b6d1568eb

Re: Current media_build doesn't succeed building on kernel 3.1.10

2012-10-01 Thread Mauro Carvalho Chehab
Em Mon, 1 Oct 2012 21:31:12 +0200 Martin Burnicki escreveu: > Hi, > > Mauro Carvalho Chehab wrote: > > Em Sun, 30 Sep 2012 20:52:42 +0200 > > > > Martin Burnicki escreveu: > > > Hi all, > > > > > > is anybody out there who can help me with the media_build system? I'm > > > trying to build the c

Re: [GIT PULL FOR v3.7] all the rest patches!

2012-10-01 Thread Antti Palosaari
On 10/01/2012 10:32 PM, Mauro Carvalho Chehab wrote: Em Sat, 29 Sep 2012 21:41:41 +0300 Antti Palosaari escreveu: Updated, one new USB ID for RTL2832U. The following changes since commit 8928b6d1568eb9104cc9e2e6627d7086437b2fb3: [media] media: mx2_camera: use managed functions to clean u

Re: [GIT PULL FOR v3.7] all the rest patches!

2012-10-01 Thread Mauro Carvalho Chehab
Em Sat, 29 Sep 2012 21:41:41 +0300 Antti Palosaari escreveu: > Updated, one new USB ID for RTL2832U. > > The following changes since commit 8928b6d1568eb9104cc9e2e6627d7086437b2fb3: > >[media] media: mx2_camera: use managed functions to clean up code > (2012-09-27 15:56:47 -0300) > > are

Re: Current media_build doesn't succeed building on kernel 3.1.10

2012-10-01 Thread Martin Burnicki
Hi, Mauro Carvalho Chehab wrote: > Em Sun, 30 Sep 2012 20:52:42 +0200 > > Martin Burnicki escreveu: > > Hi all, > > > > is anybody out there who can help me with the media_build system? I'm > > trying to build the current modules on an openSUSE 12.1 system (kernel > > 3.1.10, x86_64), but I'm get

[no subject]

2012-10-01 Thread Dr. Thomas Bastian
unsubscribe linux-media -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH 1/2] of: add helper to parse display specs

2012-10-01 Thread Mitch Bradley
On 10/1/2012 6:53 AM, Stephen Warren wrote: > On 09/24/2012 09:35 AM, Steffen Trumtrar wrote: >> Parse a display-node with timings and hardware-specs from devictree. > >> diff --git a/Documentation/devicetree/bindings/video/display >> b/Documentation/devicetree/bindings/video/display >> new file

cron job: media_tree daily build: ERRORS

2012-10-01 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 Oct 1 19:00:19 CEST 2012 git hash:8928b6d1568eb9104cc9e2e6627d7086437b2fb3 gcc version: i686-linux-gcc (GC

Re: [GIT PULL FOR v3.7] Add missing vidioc-subdev-g-edid.xml.

2012-10-01 Thread Mauro Carvalho Chehab
Em Wed, 26 Sep 2012 10:33:51 +0200 Hans Verkuil escreveu: > On Tue 25 September 2012 13:56:34 Hans Verkuil wrote: > > Hi Mauro, > > > > As requested! > > I've respun this tree, fixing one documentation bug (the max value for > 'blocks' is 256, not 255) and adding an overflow check in v4l2-ioctl

Re: [PATCH] media: add a VEU MEM2MEM format conversion and scaling driver

2012-10-01 Thread Guennadi Liakhovetski
Hi Hans Thanks for the review. As you might have seen, I just posted v2 of this driver. In it I addressed almost all your comments. As for the rest: On Tue, 11 Sep 2012, Hans Verkuil wrote: > On Tue 11 September 2012 15:01:19 Guennadi Liakhovetski wrote: [snip] > > +struct sh_veu_dev; > > + >

[PATCH] tda1004x: Lock I2C bus during firmware load

2012-10-01 Thread Mauro Carvalho Chehab
tda1004x doesn't allow firmware loads while it is busy with something else. Avoid it to happen by locking the I2C bus during firmware transfer. Signed-off-by: Mauro Carvalho Chehab --- drivers/media/dvb-frontends/tda1004x.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --gi

[PATCH v2] media: add a VEU MEM2MEM format conversion and scaling driver

2012-10-01 Thread Guennadi Liakhovetski
Video Engine Unit (VEU) is an IP block, found in multiple SuperH and ARM- based sh-mobile and r-mobile SoCs, capable of processing video data. It can perform colour-space conversion, scaling and several filtering transformations. This patch adds an initial implementation of a mem2mem V4L2 driver fo

Re: [PATCH 3/3] Add a codec driver for SI476X MFD

2012-10-01 Thread Mark Brown
On Thu, Sep 13, 2012 at 03:40:13PM -0700, Andrey Smirnov wrote: > This commit add a sound codec driver for Silicon Laboratories 476x > series of AM/FM radio chips. *Always* CC both maintainers and lists on patches. There's a few problems here, though none of them terribly substantial. > se

Re: [PATCH 1/3] Add a core driver for SI476x MFD

2012-10-01 Thread Mark Brown
On Thu, Sep 13, 2012 at 03:40:11PM -0700, Andrey Smirnov wrote: > + core = kzalloc(sizeof(*core), GFP_KERNEL); devm_kzalloc() > + if (!core) { > + pr_err("si476x-core: failed to allocate " \ > +"'struct si476x_core'\n"); > + return -ENOMEM; > +

Re: tda8290 regression fix

2012-10-01 Thread Anders Thomson
On 2012-09-23 23:06, Anders Thomson wrote: Awfully sorry about this. After having had the familty sit in and check the differences, I must say that the patch does not fix the issue. This time around I have x11grabs with ffmpeg to show if you want. I'll be away from the card until the end of the

Re: [PATCH 1/2] of: add helper to parse display specs

2012-10-01 Thread Stephen Warren
On 09/24/2012 09:35 AM, Steffen Trumtrar wrote: > Parse a display-node with timings and hardware-specs from devictree. > diff --git a/Documentation/devicetree/bindings/video/display > b/Documentation/devicetree/bindings/video/display > new file mode 100644 > index 000..722766a > --- /dev/null

[PATCH v2] MAINTAINERS: Add stk1160 driver

2012-10-01 Thread Ezequiel Garcia
Signed-off-by: Ezequiel Garcia --- Changes from v1: Fix my mail address MAINTAINERS |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 0750c24..17f6fb0 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -3168,6 +3168,13 @@ T: git git:

Re: [PATCH] MAINTAINERS: Add stk1160 driver

2012-10-01 Thread Ezequiel Garcia
On Mon, Oct 1, 2012 at 1:32 PM, Antti Palosaari wrote: > On 10/01/2012 05:20 PM, Ezequiel Garcia wrote: >> >> Signed-off-by: Ezequiel Garcia >> --- >> MAINTAINERS |7 +++ >> 1 files changed, 7 insertions(+), 0 deletions(-) >> >> diff --git a/MAINTAINERS b/MAINTAINERS >> index 0750c24..

Re: [PATCH] MAINTAINERS: Add stk1160 driver

2012-10-01 Thread Antti Palosaari
On 10/01/2012 05:20 PM, Ezequiel Garcia wrote: Signed-off-by: Ezequiel Garcia --- MAINTAINERS |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 0750c24..17f6fb0 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -3168,6 +3168,13 @@ T:

[PATCH] MAINTAINERS: add modules I am responsible

2012-10-01 Thread Antti Palosaari
All those are media modules, mostly digital television drivers. Signed-off-by: Antti Palosaari --- MAINTAINERS | 231 1 file changed, 231 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 0750c24..8c8839d 100644 --- a/MAINTAI

[PATCH] MAINTAINERS: should we arrange modules better

2012-10-01 Thread Antti Palosaari
Like order... MEDIA FOO MEDIA BAR MEDIA BAZ ? Antti Palosaari (1): MAINTAINERS: add modules I am responsible MAINTAINERS | 231 1 file changed, 231 insertions(+) -- 1.7.11.4 -- To unsubscribe from this list: send the line "unsubsc

[GIT PULL FOR 3.7] Samsung S5P/Exynos SoC driver fixes/improvements

2012-10-01 Thread Sylwester Nawrocki
Hi Mauro, The following changes since commit 8928b6d1568eb9104cc9e2e6627d7086437b2fb3: [media] media: mx2_camera: use managed functions to clean up code (2012-09-27 15:56:47 -0300) are available in the git repository at: git://git.infradead.org/users/kmpark/linux-samsung v4l_for_mauro for

Re: [GIT PATCHES FOR v3.6] Samsung media driver fixes

2012-10-01 Thread Ezequiel Garcia
On Mon, Oct 1, 2012 at 11:44 AM, Sylwester Nawrocki wrote: > On 10/01/2012 04:28 PM, Hans Verkuil wrote: >> On Mon October 1 2012 16:05:15 Ezequiel Garcia wrote: >>> Mauro and folks, >>> >>> On Mon, Oct 1, 2012 at 10:35 AM, Mauro Carvalho Chehab >>> wrote: Hi Anti/Sylwester, Em 01-

Re: [GIT PATCHES FOR v3.6] Samsung media driver fixes

2012-10-01 Thread Sylwester Nawrocki
On 10/01/2012 04:28 PM, Hans Verkuil wrote: > On Mon October 1 2012 16:05:15 Ezequiel Garcia wrote: >> Mauro and folks, >> >> On Mon, Oct 1, 2012 at 10:35 AM, Mauro Carvalho Chehab >> wrote: >>> Hi Anti/Sylwester, >>> >>> Em 01-10-2012 08:50, Antti Palosaari escreveu: Hello I have had si

Re: [GIT PATCHES FOR v3.6] Samsung media driver fixes

2012-10-01 Thread Hans Verkuil
On Mon October 1 2012 16:05:15 Ezequiel Garcia wrote: > Mauro and folks, > > On Mon, Oct 1, 2012 at 10:35 AM, Mauro Carvalho Chehab > wrote: > > Hi Anti/Sylwester, > > > > Em 01-10-2012 08:50, Antti Palosaari escreveu: > >> Hello > >> I have had similar problems too. We need badly find out better

Re: [PATCH v8 2/6] [media] v4l: Add control definitions for new H264 encoder features

2012-10-01 Thread Hans Verkuil
Hi Arun, I've got a bunch of comments below, all pretty much small stuff... On Tue October 2 2012 00:04:55 Arun Kumar K wrote: > New controls are added for supporting H264 encoding features like > - MVC frame packing > - Flexible macroblock ordering > - Arbitrary slice ordering > - Hierarchial co

[PATCH] MAINTAINERS: Add stk1160 driver

2012-10-01 Thread Ezequiel Garcia
Signed-off-by: Ezequiel Garcia --- MAINTAINERS |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 0750c24..17f6fb0 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -3168,6 +3168,13 @@ T: git git://git.kernel.org/pub/scm/linux/kernel/

[PATCH v8 5/6] [media] s5p-mfc: MFCv6 register definitions

2012-10-01 Thread Arun Kumar K
From: Jeongtae Park Adds register definitions for MFC v6.x firmware Signed-off-by: Jeongtae Park Signed-off-by: Janghyuck Kim Signed-off-by: Jaeryul Oh Signed-off-by: Naveen Krishna Chatradhi Signed-off-by: Arun Kumar K --- drivers/media/platform/s5p-mfc/regs-mfc-v6.h | 409 ++

[PATCH v8 4/6] [media] s5p-mfc: Add MFC variant data to device context

2012-10-01 Thread Arun Kumar K
MFC variant data replaces various macros used in the driver which will change in a different version of MFC hardware. Also does a cleanup of MFC context structure and common files. Signed-off-by: Jeongtae Park Signed-off-by: Janghyuck Kim Signed-off-by: Jaeryul Oh Signed-off-by: Naveen Krishna

[PATCH v8 2/6] [media] v4l: Add control definitions for new H264 encoder features

2012-10-01 Thread Arun Kumar K
New controls are added for supporting H264 encoding features like - MVC frame packing - Flexible macroblock ordering - Arbitrary slice ordering - Hierarchial coding Signed-off-by: Jeongtae Park Signed-off-by: Naveen Krishna Chatradhi Signed-off-by: Arun Kumar K --- Documentation/DocBook/media/

[PATCH v8 1/6] [media] v4l: Add fourcc definitions for new formats

2012-10-01 Thread Arun Kumar K
Adds the following new fourcc definitions. For multiplanar YCbCr - V4L2_PIX_FMT_NV21M - V4L2_PIX_FMT_NV12MT_16X16 and compressed formats - V4L2_PIX_FMT_H264_MVC - V4L2_PIX_FMT_VP8 Signed-off-by: Jeongtae Park Signed-off-by: Naveen Krishna Chatradhi Signed-off-by:

[PATCH v8 0/6] Update MFC v4l2 driver to support MFC6.x

2012-10-01 Thread Arun Kumar K
The patchset adds support for MFCv6 firmware in s5p-mfc driver. The patches are rebased to the latest media-tree. Changelog v8 - Addressed comments by Sylwester Nawrocki http://www.mail-archive.com/linux-media@vger.kernel.org/msg52942.html Changelog v7 - Removed unused macros from register files

Re: Integrate camera interface of OMAP3530 in Angstrom Linux

2012-10-01 Thread Laurent Pinchart
Hi Andreas, On Monday 01 October 2012 15:07:26 Andreas Nagel wrote: > Hi Laurent, > > thanks for your reply. > > Using a current mainline kernel is a little problematic. Recently I > compiled the 2.6.39 and it wasn't able to boot at all. The reason for > this are probably the chips, that are bui

[PATCH RFC] media: v4l2-ctrl: Add digital gain controls

2012-10-01 Thread Prabhakar
From: Lad, Prabhakar add support for per color component digital gain controls and also their corresponding offset. Signed-off-by: Lad, Prabhakar Signed-off-by: Manjunath Hadli Cc: Sakari Ailus Cc: Laurent Pinchart Cc: Guennadi Liakhovetski Cc: Sylwester Nawrocki Cc: Hans Verkuil Cc: Hans

Re: [GIT PATCHES FOR v3.6] Samsung media driver fixes

2012-10-01 Thread Ezequiel Garcia
Mauro and folks, On Mon, Oct 1, 2012 at 10:35 AM, Mauro Carvalho Chehab wrote: > Hi Anti/Sylwester, > > Em 01-10-2012 08:50, Antti Palosaari escreveu: >> Hello >> I have had similar problems too. We need badly find out better procedures >> for patch handling. Something like parches are updated a

Re: Current media_build doesn't succeed building on kernel 3.1.10

2012-10-01 Thread Mauro Carvalho Chehab
Em Sun, 30 Sep 2012 20:52:42 +0200 Martin Burnicki escreveu: > Hi all, > > is anybody out there who can help me with the media_build system? I'm trying > to build the current modules on an openSUSE 12.1 system (kernel 3.1.10, > x86_64), but I'm getting compilation errors because the s5k4ecgx d

Re: [GIT PATCHES FOR v3.6] Samsung media driver fixes

2012-10-01 Thread Mauro Carvalho Chehab
Hi Anti/Sylwester, Em 01-10-2012 08:50, Antti Palosaari escreveu: > Hello > I have had similar problems too. We need badly find out better procedures for > patch handling. Something like parches are updated about once per week to the > master. I have found I lose quite much time rebasing and res

Re: [v3 1/1] driver-core: Shut up dev_dbg_reatelimited() without DEBUG

2012-10-01 Thread poma
On 09/04/2012 06:40 AM, Hiroshi Doyu wrote: > dev_dbg_reatelimited() without DEBUG printed "217078 callbacks > suppressed". This shouldn't print anything without DEBUG. > > With CONFIG_DYNAMIC_DEBUG, the print should be configured as expected. > > Signed-off-by: Hiroshi Doyu > Reported-by: Hin-T

Re: Integrate camera interface of OMAP3530 in Angstrom Linux

2012-10-01 Thread Andreas Nagel
Hi Laurent, thanks for your reply. Using a current mainline kernel is a little problematic. Recently I compiled the 2.6.39 and it wasn't able to boot at all. The reason for this are probably the chips, that are built on the CPU module. Usually, a working kernel for this module was undergoing

[PATCH v4] media: mt9p031/mt9t001/mt9v032: use V4L2_CID_TEST_PATTERN for test pattern control

2012-10-01 Thread Prabhakar
From: Lad, Prabhakar V4L2_CID_TEST_PATTERN is now a standard control. This patch replaces the user defined control for test pattern to make use of standard control V4L2_CID_TEST_PATTERN. Signed-off-by: Lad, Prabhakar Signed-off-by: Manjunath Hadli Cc: Laurent Pinchart Cc: Sakari Ailus Cc: Pa

[PATCH] media: davinci: vpfe: fix build error

2012-10-01 Thread Prabhakar
From: Lad, Prabhakar recent patch with commit id 4f996594ceaf6c3f9bc42b40c40b0f7f87b79c86 which makes vidioc_s_crop const, was causing a following build error. vpfe_capture.c: In function 'vpfe_s_crop': vpfe_capture.c:1695: error: assignment of read-only location '*crop' vpfe_capture.c:1706: war

[PATCH 2/2] tda18271: make 'low-power standby mode after attach' multi-instance safe

2012-10-01 Thread Michael Krufky
Ensure that unnecessary features are powered down at the end of the attach() function on attach of the tuner's first instance. If the configuration requires the loop thru or xtout features, they will remain enabled. This must *only* be done after attaching the first instance of the tuner. If there

[PATCH 1/2] tda18271: enter low-power standby mode at the end of tda18271_attach()

2012-10-01 Thread Michael Krufky
Ensure that unnecessary features are powered down at the end of the attach() function. If the configuration requires the loop thru or xtout features, they will remain enabled. Thanks to Antti Palosaari for noticing the additional power consumption. Cc: Antti Palosaari Signed-off-by: Michael Kru

[PULL] enter low-power standby mode at the end of tda18271_attach() on first instance git://linuxtv.org/mkrufky/tuners tda18271

2012-10-01 Thread Michael Krufky
The following changes since commit 8928b6d1568eb9104cc9e2e6627d7086437b2fb3: [media] media: mx2_camera: use managed functions to clean up code (2012-09-27 15:56:47 -0300) are available in the git repository at: git://linuxtv.org/mkrufky/tuners tda18271 for you to fetch changes up to d48ecc4

Re: [PATCH] tda18271-common: hold the I2C adapter during write transfers

2012-10-01 Thread Mauro Carvalho Chehab
Em 01-10-2012 08:31, Antti Palosaari escreveu: > On 10/01/2012 01:42 PM, Mauro Carvalho Chehab wrote: >> Em Fri, 28 Sep 2012 21:31:07 +0300 >> Antti Palosaari escreveu: >> >>> Hello, >>> Did not fix the issue. Problem remains same. >> >> Ok, that's what I was afraid: there's likely something at dr

Re: [PATCH 2/2] drivers: media: video: Add support for Aptina ar0130 sensor

2012-10-01 Thread Laurent Pinchart
Hi Prashanth, Thank you for the patch. I've personally considered Aptina to be the most open-source friendly sensor vendor for some time, and I'm very happy to see direct contributions to the Linux kernel :-) How different are the AR0130 and the AR0330 ? Would it make sense to have a single dr

Re: [PATCH v2] omap3isp: Use monotonic timestamps for statistics buffers

2012-10-01 Thread Mauro Carvalho Chehab
Em 27-09-2012 16:49, Sakari Ailus escreveu: > Hi Mauro, > > Mauro Carvalho Chehab wrote: >> Em Fri, 14 Sep 2012 23:57:48 +0200 >> Laurent Pinchart escreveu: ... >>> struct omap3isp_stat_data { >>> -struct timeval ts; >>> +struct timespec ts; >> >> NACK. That breaks userspace API, as thi

Re: [GIT PATCHES FOR v3.6] Samsung media driver fixes

2012-10-01 Thread Antti Palosaari
Hello I have had similar problems too. We need badly find out better procedures for patch handling. Something like parches are updated about once per week to the master. I have found I lose quite much time rebasing and res-sending stuff all the time. What I propose: 1) module maintainers send

Re: [media/usb] Trivial fix for 3.7 if not too late

2012-10-01 Thread Antti Palosaari
On 10/01/2012 02:39 PM, Antti Palosaari wrote: On 10/01/2012 10:33 AM, Patrick Boettcher wrote: Hi Mauro, If it is not too late could you please incorporate the following patch to 3.7. It fixed the autoloading of the technisat-ubs2-module when the device is actually detected. - [PATCH] [medi

Re: [media/usb] Trivial fix for 3.7 if not too late

2012-10-01 Thread Antti Palosaari
On 10/01/2012 10:33 AM, Patrick Boettcher wrote: Hi Mauro, If it is not too late could you please incorporate the following patch to 3.7. It fixed the autoloading of the technisat-ubs2-module when the device is actually detected. - [PATCH] [media]: add MODULE_DEVICE_TABLE to technisat-usb2

Re: [PATCH] tda18271-common: hold the I2C adapter during write transfers

2012-10-01 Thread Antti Palosaari
On 10/01/2012 01:42 PM, Mauro Carvalho Chehab wrote: Em Fri, 28 Sep 2012 21:31:07 +0300 Antti Palosaari escreveu: Hello, Did not fix the issue. Problem remains same. Ok, that's what I was afraid: there's likely something at drxk firmware that it is needed for tda18271 to be visible - maybe g

Re: [PATCH 1/2] dm644x: replace the obsolete preset API by the timings API.

2012-10-01 Thread Sekhar Nori
On 8/8/2012 6:00 PM, Prabhakar Lad wrote: > From: Hans Verkuil > > Signed-off-by: Hans Verkuil > Signed-off-by: Lad, Prabhakar > Signed-off-by: Manjunath Hadli Please have a patch description. For the DaVinci platform portion: Acked-by: Sekhar Nori Thanks, Sekhar -- To unsubscribe from thi

Re: [PATCH] usb id addition for Terratec Cinergy T Stick Dual rev. 2

2012-10-01 Thread Antti Palosaari
On 10/01/2012 02:15 PM, Mauro Carvalho Chehab wrote: Em Sun, 30 Sep 2012 19:36:50 +0200 Damien Bally escreveu: Le 29/09/2012 19:33, Mauro Carvalho Chehab a écrit : It seems that the it931x variant has bcdDevice equal to 2.00, from Damien's email: idVendor 0x0ccd TerraTec

Re: [PATCH] usb id addition for Terratec Cinergy T Stick Dual rev. 2

2012-10-01 Thread Mauro Carvalho Chehab
Em Sun, 30 Sep 2012 19:36:50 +0200 Damien Bally escreveu: > > > Le 29/09/2012 19:33, Mauro Carvalho Chehab a écrit : > It seems that the it931x variant has bcdDevice equal to 2.00, > > from Damien's email: > > > > idVendor 0x0ccd TerraTec Electronic GmbH > > idProduct

Re: omap3isp: wrong image after resizer with mt9v034 sensor

2012-10-01 Thread Laurent Pinchart
On Monday 01 October 2012 12:49:48 Enric Balletbò i Serra wrote: > 2012/10/1 Laurent Pinchart : > > On Friday 28 September 2012 17:32:36 Enric Balletbò i Serra wrote: > >> 2012/9/28 Laurent Pinchart : > >> > On Friday 28 September 2012 10:21:56 Enric Balletbò i Serra wrote: > >> >> 2012/9/28 Lauren

Re: omap3isp: wrong image after resizer with mt9v034 sensor

2012-10-01 Thread Enric Balletbò i Serra
2012/10/1 Laurent Pinchart : > Hi Enric, > > On Friday 28 September 2012 17:32:36 Enric Balletbò i Serra wrote: >> 2012/9/28 Laurent Pinchart : >> > On Friday 28 September 2012 10:21:56 Enric Balletbò i Serra wrote: >> >> 2012/9/28 Laurent Pinchart : >> >> > On Thursday 27 September 2012 18:05:56 E

Re: [PATCH] tda18271-common: hold the I2C adapter during write transfers

2012-10-01 Thread Mauro Carvalho Chehab
Em Fri, 28 Sep 2012 21:31:07 +0300 Antti Palosaari escreveu: > Hello, > Did not fix the issue. Problem remains same. Ok, that's what I was afraid: there's likely something at drxk firmware that it is needed for tda18271 to be visible - maybe gpio settings. > With the sleep + that patch > it w

[GIT PULL FOR v3.7] ivtv v4l2-compliance fixes

2012-10-01 Thread Hans Verkuil
Hi Mauro, Andy, This is a series of ivtv compliance fixes. All video nodes except for the PCM capture node (obviously) and the YUV output node (a remaining issue with FIELD_ANY) now pass the tests. Regards, Hans The following changes since commit 8928b6d1568eb9104cc9e2e6627d7086437b2f

Re: omap3isp: wrong image after resizer with mt9v034 sensor

2012-10-01 Thread Laurent Pinchart
Hi Enric, On Friday 28 September 2012 17:32:36 Enric Balletbò i Serra wrote: > 2012/9/28 Laurent Pinchart : > > On Friday 28 September 2012 10:21:56 Enric Balletbò i Serra wrote: > >> 2012/9/28 Laurent Pinchart : > >> > On Thursday 27 September 2012 18:05:56 Enric Balletbò i Serra wrote: > >> >> 2

Re: cron job: media_tree daily build: ERRORS

2012-10-01 Thread Guennadi Liakhovetski
Hi Sylwester On Thu, 27 Sep 2012, Sylwester Nawrocki wrote: > Hi, > > On 09/27/2012 08:49 PM, Hans Verkuil wrote: > > 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: >

  1   2   >