[PATCH] DVB-APPS: azap gets -p argument

2011-03-04 Thread Christian Ulrich
Hey there, I've written a patch against the latest version of azap in the hg repository during the work of my Archos Gen8 DVB-T / ATSC project. Details of patch: - add -p argument from tzap to azap - thus ts streaming to dvr0 includes the pat/pmt Best regards, Chris azap_patpmt.patch Descripti

Re: [patch] Fix AF9015 Dual tuner i2c write failures

2011-03-04 Thread adq
On 5 March 2011 01:43, adq wrote: > On 4 March 2011 23:11, Andrew de Quincey wrote: >> On 4 March 2011 22:59, Antti Palosaari wrote: >>> On 03/05/2011 12:44 AM, Andrew de Quincey wrote: >> >> Adding a "bus lock" to af9015_i2c_xfer() will not work as demod/tuner >> accesses will take

Re: [patch] Fix AF9015 Dual tuner i2c write failures

2011-03-04 Thread adq
On 4 March 2011 23:11, Andrew de Quincey wrote: > On 4 March 2011 22:59, Antti Palosaari wrote: >> On 03/05/2011 12:44 AM, Andrew de Quincey wrote: > > Adding a "bus lock" to af9015_i2c_xfer() will not work as demod/tuner > accesses will take multiple i2c transactions. > > The

Re: [GIT PULL FOR 2.6.39] Media controller and OMAP3 ISP driver

2011-03-04 Thread David Cohen
On Sat, Mar 5, 2011 at 1:49 AM, Mauro Carvalho Chehab wrote: > Em 04-03-2011 19:49, David Cohen escreveu: >> On Sat, Mar 5, 2011 at 12:43 AM, Mauro Carvalho Chehab >> wrote: >>> Em 04-03-2011 19:33, David Cohen escreveu: Hi Mauro, On Sat, Mar 5, 2011 at 12:16 AM, Mauro Carvalho Che

Re: [GIT PULL FOR 2.6.39] Media controller and OMAP3 ISP driver

2011-03-04 Thread Mauro Carvalho Chehab
Em 04-03-2011 19:49, David Cohen escreveu: > On Sat, Mar 5, 2011 at 12:43 AM, Mauro Carvalho Chehab > wrote: >> Em 04-03-2011 19:33, David Cohen escreveu: >>> Hi Mauro, >>> >>> On Sat, Mar 5, 2011 at 12:16 AM, Mauro Carvalho Chehab >>> wrote: Hi Laurent, Em 17-02-2011 13:06, Lauren

Re: [patch] Fix AF9015 Dual tuner i2c write failures

2011-03-04 Thread Andrew de Quincey
On 4 March 2011 22:59, Antti Palosaari wrote: > On 03/05/2011 12:44 AM, Andrew de Quincey wrote: Adding a "bus lock" to af9015_i2c_xfer() will not work as demod/tuner accesses will take multiple i2c transactions. Therefore, the following patch overrides the dvb_frontend_op

Re: [patch] Fix AF9015 Dual tuner i2c write failures

2011-03-04 Thread Antti Palosaari
On 03/05/2011 12:44 AM, Andrew de Quincey wrote: Adding a "bus lock" to af9015_i2c_xfer() will not work as demod/tuner accesses will take multiple i2c transactions. Therefore, the following patch overrides the dvb_frontend_ops functions to add a per-device lock around them: only one frontend can

Re: [GIT PULL FOR 2.6.39] Media controller and OMAP3 ISP driver

2011-03-04 Thread David Cohen
On Sat, Mar 5, 2011 at 12:43 AM, Mauro Carvalho Chehab wrote: > Em 04-03-2011 19:33, David Cohen escreveu: >> Hi Mauro, >> >> On Sat, Mar 5, 2011 at 12:16 AM, Mauro Carvalho Chehab >> wrote: >>> Hi Laurent, >>> >>> Em 17-02-2011 13:06, Laurent Pinchart escreveu: Hi Mauro, The follo

Re: [patch] Fix AF9015 Dual tuner i2c write failures

2011-03-04 Thread Andrew de Quincey
>> Adding a "bus lock" to af9015_i2c_xfer() will not work as demod/tuner >> accesses will take multiple i2c transactions. >> >> Therefore, the following patch overrides the dvb_frontend_ops >> functions to add a per-device lock around them: only one frontend can >> now use the i2c bus at a time. Te

Re: [GIT PULL FOR 2.6.39] Media controller and OMAP3 ISP driver

2011-03-04 Thread Mauro Carvalho Chehab
Em 04-03-2011 19:33, David Cohen escreveu: > Hi Mauro, > > On Sat, Mar 5, 2011 at 12:16 AM, Mauro Carvalho Chehab > wrote: >> Hi Laurent, >> >> Em 17-02-2011 13:06, Laurent Pinchart escreveu: >>> Hi Mauro, >>> >>> The following changes since commit 85e2efbb1db9a18d218006706d6e4fbeb0216213: >>> >>

Re: [GIT PULL FOR 2.6.39] Media controller and OMAP3 ISP driver

2011-03-04 Thread David Cohen
Hi Mauro, On Sat, Mar 5, 2011 at 12:16 AM, Mauro Carvalho Chehab wrote: > Hi Laurent, > > Em 17-02-2011 13:06, Laurent Pinchart escreveu: >> Hi Mauro, >> >> The following changes since commit 85e2efbb1db9a18d218006706d6e4fbeb0216213: >> >>   Linux 2.6.38-rc5 (2011-02-15 19:23:45 -0800) >> >> are

Re: [GIT PULL FOR 2.6.39] Media controller and OMAP3 ISP driver

2011-03-04 Thread Mauro Carvalho Chehab
Hi Laurent, Em 17-02-2011 13:06, Laurent Pinchart escreveu: > Hi Mauro, > > The following changes since commit 85e2efbb1db9a18d218006706d6e4fbeb0216213: > > Linux 2.6.38-rc5 (2011-02-15 19:23:45 -0800) > > are available in the git repository at: > git://linuxtv.org/pinchartl/media.git media

Re: [patch] Fix AF9015 Dual tuner i2c write failures

2011-03-04 Thread Antti Palosaari
Wow, thanks! On 03/04/2011 11:37 PM, Andrew de Quincey wrote: Hi, this has been annoying me for some time, so this evening I fixed it. If you use one of the above dual tuner devices (e.g. KWorld 399U), you get random tuning failures and i2c errors reported in dmesg such as: [...] Adding a "bus

[patch] Fix AF9015 Dual tuner i2c write failures

2011-03-04 Thread Andrew de Quincey
Hi, this has been annoying me for some time, so this evening I fixed it. If you use one of the above dual tuner devices (e.g. KWorld 399U), you get random tuning failures and i2c errors reported in dmesg such as: af9013: I2C read failed reg:d607 af9015: command failed:1 mxl5005s I2C write failed a

Re: [GIT PULL FOR 2.6.39] Media controller and OMAP3 ISP driver

2011-03-04 Thread Mauro Carvalho Chehab
Em 04-03-2011 17:49, Mauro Carvalho Chehab escreveu: > Em 03-03-2011 07:25, Laurent Pinchart escreveu: >> > Hi Mauro, >> > >> > The following changes since commit >> > 88a763df226facb74fdb254563e30e9efb64275c: >> > >> > [media] dw2102: prof 1100 corrected (2011-03-02 16:56:54 -0300) >> > >> >

Re: [GIT PULL FOR 2.6.39] Media controller and OMAP3 ISP driver

2011-03-04 Thread Mauro Carvalho Chehab
Em 03-03-2011 07:25, Laurent Pinchart escreveu: > Hi Mauro, > > The following changes since commit 88a763df226facb74fdb254563e30e9efb64275c: > > [media] dw2102: prof 1100 corrected (2011-03-02 16:56:54 -0300) > > are available in the git repository at: > git://linuxtv.org/pinchartl/media.git

Re: [GIT PULL FOR 2.6.39] Media controller and OMAP3 ISP driver

2011-03-04 Thread David Cohen
Hi Mauro, On Fri, Mar 4, 2011 at 10:10 PM, Mauro Carvalho Chehab wrote: > Em 03-03-2011 07:25, Laurent Pinchart escreveu: >> Hi Mauro, >> >> The following changes since commit 88a763df226facb74fdb254563e30e9efb64275c: >> >>   [media] dw2102: prof 1100 corrected (2011-03-02 16:56:54 -0300) >> >> a

Re: [GIT PULL FOR 2.6.39] Media controller and OMAP3 ISP driver

2011-03-04 Thread Mauro Carvalho Chehab
Em 03-03-2011 07:25, Laurent Pinchart escreveu: > Hi Mauro, > > The following changes since commit 88a763df226facb74fdb254563e30e9efb64275c: > > [media] dw2102: prof 1100 corrected (2011-03-02 16:56:54 -0300) > > are available in the git repository at: > git://linuxtv.org/pinchartl/media.git

Re: [GIT PULL FOR 2.6.39] Media controller and OMAP3 ISP driver

2011-03-04 Thread Mauro Carvalho Chehab
Em 03-03-2011 07:25, Laurent Pinchart escreveu: > Hi Mauro, > > The following changes since commit 88a763df226facb74fdb254563e30e9efb64275c: > > [media] dw2102: prof 1100 corrected (2011-03-02 16:56:54 -0300) > > are available in the git repository at: > git://linuxtv.org/pinchartl/media.git

[cron job] v4l-dvb daily build: ERRORS

2011-03-04 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:Fri Mar 4 19:00:23 CET 2011 git hash:88a763df226facb74fdb254563e30e9efb64275c gcc version: i686-linux-gcc (GCC) 4.5.

RE: [RFC/PATCH v7 1/5] Changes in include/linux/videodev2.h for MFC 5.1

2011-03-04 Thread Kamil Debski
Hi, > -Original Message- > From: Laurent Pinchart [mailto:laurent.pinch...@ideasonboard.com] > Sent: 04 March 2011 17:39 > To: Kamil Debski > Cc: linux-media@vger.kernel.org; linux-samsung-...@vger.kernel.org; > m.szyprow...@samsung.com; kyungmin.p...@samsung.com; > jaeryul...@samsung.com;

Re: [cron job] v4l-dvb daily build: ERRORS

2011-03-04 Thread Steffen Barszus
On Thu, 3 Mar 2011 10:11:35 +0100 Hans Verkuil wrote: > On Thursday, March 03, 2011 09:44:17 Steffen Barszus wrote: > > home/hans/work/build/media_build/v4l/cx23885-cards.c:28:28: fatal > > error: staging/altera.h: No such file or directory > > > > This is true :) Any commit waiting, or any commi

Re: BUG at mm/mmap.c:2309 when cx18.ko and cx18-alsa.ko loaded

2011-03-04 Thread Andy Walls
On Fri, 2011-03-04 at 10:50 -0500, Devin Heitmueller wrote: > On Thu, Mar 3, 2011 at 9:06 PM, Andy Walls wrote: > > Hi, > > > > I got a BUG when loading the cx18.ko module (which in turn requests the > > cx18-alsa.ko module) on a kernel built from this repository > > > >http://git.linuxtv.

Re: omap3isp cache error when unloading

2011-03-04 Thread David Cohen
[snip] >> From 2712f2fd087ca782e964c912c7f1973e7d84f2b7 Mon Sep 17 00:00:00 2001 >> From: Michael Jones >> Date: Fri, 4 Mar 2011 15:09:48 +0100 >> Subject: [PATCH] omap: iovmm: disallow mapping NULL address >> >> commit c7f4ab26e3bcdaeb3e19ec658e3ad9092f1a6ceb allowed mapping >> the NULL address

Re: [RFC/PATCH v7 1/5] Changes in include/linux/videodev2.h for MFC 5.1

2011-03-04 Thread Laurent Pinchart
On Friday 04 March 2011 12:26:18 Kamil Debski wrote: > This patch adds fourcc values for compressed video stream formats and > V4L2_CTRL_CLASS_CODEC. Also adds controls used by MFC 5.1 driver. > > Signed-off-by: Kamil Debski > Signed-off-by: Kyungmin Park > --- > include/linux/videodev2.h | 3

Re: [PATCH 4/4] omap3isp: lane shifter support

2011-03-04 Thread Laurent Pinchart
Hi sMichal, Thanks for the patch. On Friday 04 March 2011 09:58:04 Michael Jones wrote: > Signed-off-by: Michael Jones > --- > drivers/media/video/omap3-isp/isp.c | 82 > +- drivers/media/video/omap3-isp/isp.h | > 4 +- > drivers/media/video/omap3-isp/i

[PATCH 3/7] ARM: Samsung: update/rewrite Samsung SYSMMU (IOMMU) driver

2011-03-04 Thread Marek Szyprowski
From: Andrzej Pietrasiewicz This patch performs a complete rewrite of sysmmu driver for Samsung platform: - the new version introduces an api to construct device private page tables and enables to use device private address space mode - simplified the resource management: no more single platfor

Re: BUG at mm/mmap.c:2309 when cx18.ko and cx18-alsa.ko loaded

2011-03-04 Thread Devin Heitmueller
On Thu, Mar 3, 2011 at 9:06 PM, Andy Walls wrote: > Hi, > > I got a BUG when loading the cx18.ko module (which in turn requests the > cx18-alsa.ko module) on a kernel built from this repository > >        http://git.linuxtv.org/media_tree.git staging/for_v2.6.39 > > which I beleive is based on 2.6

Re: [PATCH 3/4] omap3isp: ccdc: support Y10, Y12, SGRBG8, SBGGR8

2011-03-04 Thread Laurent Pinchart
Hi Michael, Thanks for the patch. On Friday 04 March 2011 09:58:03 Michael Jones wrote: > Signed-off-by: Michael Jones > --- > drivers/media/video/omap3-isp/ispccdc.c |4 > drivers/media/video/omap3-isp/ispvideo.c |8 > 2 files changed, 12 insertions(+), 0 deletions(-) >

Re: omap3isp cache error when unloading

2011-03-04 Thread David Cohen
On Fri, Mar 4, 2011 at 4:39 PM, Michael Jones wrote: > Hi David, Hi Michael, > > On 03/04/2011 02:12 PM, David Cohen wrote: >> Hi, >> >> [snip] >> >>> Sorry, I should've mentioned: I'm using your media-0005-omap3isp branch >>> based on 2.6.38-rc5.  I didn't have the problem with 2.6.37, either.

Re: [PATCH 2/4] media: add 8-bit bayer formats and Y12

2011-03-04 Thread Laurent Pinchart
Hi Michael, Thanks for the patch. On Friday 04 March 2011 09:58:02 Michael Jones wrote: > Signed-off-by: Michael Jones Acked-by: Laurent Pinchart > --- > include/linux/v4l2-mediabus.h |7 +-- > 1 files changed, 5 insertions(+), 2 deletions(-) > > diff --git a/include/linux/v4l2-medi

[PATCH 5/6] s5pv310: add s5p-tv to platform devices

2011-03-04 Thread Tomasz Stanislawski
Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park Reviewed-by: Marek Szyprowski s5pv310: fix and clean code for TV power s5pv310: tv: fix clock setup s5pv310: tv: integrate with Power Domain driver s5pv310: tv: register fix s5pv310: tv: add port HDMI_EN1 gpio to regulator api s5pv

[PATCH 3/6] v4l: add macro for 1080p59_54 preset

2011-03-04 Thread Tomasz Stanislawski
The 1080p59_94 is supported in latest Samusng SoC. Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park --- drivers/media/video/v4l2-common.c |1 + include/linux/videodev2.h |1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/media/video/v4l2-

[PATCH 6/6] s5pv310: add s5p-tv to Universal C210 board

2011-03-04 Thread Tomasz Stanislawski
Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park --- arch/arm/mach-s5pv310/Kconfig |2 + arch/arm/mach-s5pv310/mach-universal_c210.c | 54 +++ 2 files changed, 56 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-s5pv310/Kconfig

Re: [PATCH 1/4] v4l: add V4L2_PIX_FMT_Y12 format

2011-03-04 Thread Laurent Pinchart
Hi Michael, Thanks for the patch. On Friday 04 March 2011 09:58:01 Michael Jones wrote: > Signed-off-by: Michael Jones Acked-by: Laurent Pinchart > --- > include/linux/videodev2.h |1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/include/linux/videodev2.h b/inclu

[PATCH 2/6] universal: i2c: add I2C controller 8 (HDMIPHY)

2011-03-04 Thread Tomasz Stanislawski
Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park --- arch/arm/mach-s5pv310/clock.c |6 +++ arch/arm/mach-s5pv310/include/mach/irqs.h |4 ++ arch/arm/mach-s5pv310/include/mach/map.h |1 + arch/arm/plat-samsung/Kconfig |5 ++ arch/arm/plat-sa

[PATCH 1/6] i2c-s3c2410: fix I2C dedicated for hdmiphy

2011-03-04 Thread Tomasz Stanislawski
The I2C HDMIPHY dedicated controller has different timeout handling and reset conditions. Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park CC: ben-li...@fluff.org --- drivers/i2c/busses/i2c-s3c2410.c | 36 +++- 1 files changed, 35 insertions(+),

[PATCH v2 0/6] HDMI driver for Samsung S5PV310 platform

2011-03-04 Thread Tomasz Stanislawski
From: Marek Szyprowski Hello, I would like to present the second version of HDMI driver for S5PC210 platform. The driver is under a heavy development. The most recent changes are: 1. Minor bugs and fixes: - pink line on left side of display - premature start of VP's streaming - usage of free me

Re: [PATCH] v4l2-ctrls: Add transaction support

2011-03-04 Thread Hans Verkuil
On Friday, March 04, 2011 14:36:40 Laurent Pinchart wrote: > Hi Hans, > > On Friday 04 March 2011 10:47:11 Hans Verkuil wrote: > > Hi Laurent, > > > > I'm afraid this approach won't work. See below for the details. > > > > On Thursday, March 03, 2011 16:13:33 Laurent Pinchart wrote: > > > Some h

Re: omap3isp cache error when unloading

2011-03-04 Thread Michael Jones
Hi David, On 03/04/2011 02:12 PM, David Cohen wrote: > Hi, > > [snip] > >> Sorry, I should've mentioned: I'm using your media-0005-omap3isp branch >> based on 2.6.38-rc5. I didn't have the problem with 2.6.37, either. >> It's actually not related to mis-configuring the ISP pipeline like I >> th

Re: [PATCH] v4l2-ctrls: Add transaction support

2011-03-04 Thread Laurent Pinchart
Hi Hans, On Friday 04 March 2011 10:47:11 Hans Verkuil wrote: > Hi Laurent, > > I'm afraid this approach won't work. See below for the details. > > On Thursday, March 03, 2011 16:13:33 Laurent Pinchart wrote: > > Some hardware supports controls transactions. For instance, the MT9T001 > > sensor

Re: omap3isp cache error when unloading

2011-03-04 Thread David Cohen
Hi, [snip] > Sorry, I should've mentioned: I'm using your media-0005-omap3isp branch > based on 2.6.38-rc5.  I didn't have the problem with 2.6.37, either. > It's actually not related to mis-configuring the ISP pipeline like I > thought at first- it also happens after I have successfully captured

[RFC/PATCH v7 1/5] Changes in include/linux/videodev2.h for MFC 5.1

2011-03-04 Thread Kamil Debski
This patch adds fourcc values for compressed video stream formats and V4L2_CTRL_CLASS_CODEC. Also adds controls used by MFC 5.1 driver. Signed-off-by: Kamil Debski Signed-off-by: Kyungmin Park --- include/linux/videodev2.h | 39 +++ 1 files changed, 39 inse

[RFC/PATCH v7 2/5] MFC: Add MFC 5.1 driver to plat-s5p

2011-03-04 Thread Kamil Debski
This patch adds platform support for Multi Format Codec 5.1. MFC 5.1 is capable of handling a range of video codecs and this driver provides V4L2 interface for video decoding. Signed-off-by: Kamil Debski Signed-off-by: Kyungmin Park --- arch/arm/mach-s5pv310/clock.c | 28 +++

[PATCH/RFC v7 5/5] v4l: Documentation for the codec interface

2011-03-04 Thread Kamil Debski
This patch adds documentation for the codec interface of V4L2. Signed-off-by: Kamil Debski Signed-off-by: Kyungmin Park --- Documentation/DocBook/v4l/dev-codec.xml | 169 --- 1 files changed, 155 insertions(+), 14 deletions(-) diff --git a/Documentation/DocBook/v4l

[RFC/PATCH v7 4/5] s5pv310: Enable MFC on universal_c210 board

2011-03-04 Thread Kamil Debski
This patch enables MFC 5.1 on the universal_c210 board. Multi Format Codec 5.1 is capable of handling a range of video codecs. Signed-off-by: Kamil Debski Signed-off-by: Kyungmin Park --- arch/arm/mach-s5pv310/Kconfig |1 + arch/arm/mach-s5pv310/mach-universal_c210.c |8 ++

[RFC/PATCH v7 0/5] Multi Format Codec 5.1 driver for s5pv310 SoC

2011-03-04 Thread Kamil Debski
Hi, This is the seventh version of the MFC 5.1 driver. It is still a work in progress. This version currently supports decoding only, but encoding is heavily developed. For nearly two months new features were added and fixes and suggestions were implemented. The main purpose for posting this pa

[partially solved] Re: Big ptoblem with small webcam

2011-03-04 Thread W.P.
Użytkownik W.P. napisał: > Użytkownik Laurent Pinchart napisał: > >> Hi, >> >> On Wednesday 02 March 2011 16:57:05 W.P. wrote: >> >> >>> Hi there, >>> I just got an Creative VGA (640x480) USB Live Webcam, VF0520. >>> >>> lsusb (partial): >>> >>> Bus 003 Device 007: ID 041e:406c Creative

[GIT PULL FOR 2.6.39] s5p-fimc driver and videobuf2 fixes

2011-03-04 Thread Sylwester Nawrocki
Hi Mauro, please pull the following change set, it's a couple of s5p-fimc driver fixes and updates after conversion to videobuf2. There are also two small corrections for the videobuf2 and documentation for NV12MT format. The following changes since commit 548b491f5a3221e26c0b08dece18fdc62930fe5

Re: omap3isp cache error when unloading

2011-03-04 Thread Hiroshi DOYU
From: Sakari Ailus Subject: Re: omap3isp cache error when unloading Date: Fri, 4 Mar 2011 09:38:22 +0200 > Hi Michael, > > Michael Jones wrote: >> On 03/02/2011 08:18 PM, Laurent Pinchart wrote: >>> Hi Michael, >>> >>> On Tuesday 01 March 2011 17:41:01 Michael Jones wrote: Hi all,

RE: V4L2 'brainstorming' meeting in Warsaw, March 2011

2011-03-04 Thread Jaeryul Oh
Hi, Marek Jonghun Han & I will participate in that meeting. We are preparing for some topic that we want to talk with participants. I'll let you know about the agenda soon. > -Original Message- > From: linux-media-ow...@vger.kernel.org [mailto:linux-media- > ow...@vger.kernel.org] On Beha

Re: [PATCH] v4l2-ctrls: Add transaction support

2011-03-04 Thread Hans Verkuil
Hi Laurent, I'm afraid this approach won't work. See below for the details. On Thursday, March 03, 2011 16:13:33 Laurent Pinchart wrote: > Some hardware supports controls transactions. For instance, the MT9T001 > sensor can optionally shadow registers that influence the output image, > allowing t

Re: V4L2 'brainstorming' meeting in Warsaw, March 2011

2011-03-04 Thread Robert Fekete
Hi, I would gladly join this meeting but unfortunately I cannot attend. On the other hand I am glad to present that Willy Poisson from ST-Ericsson can join. Willy will mainly focus on Camera/imaging parts in which we believe V4L2 may fit very well. Some comments: Regarding OGL/ES in V4L2

[PATCH 3/7] ARM: Samsung: update/rewrite Samsung SYSMMU (IOMMU) driver

2011-03-04 Thread Marek Szyprowski
From: Andrzej Pietrasiewicz This patch performs a complete rewrite of sysmmu driver for Samsung platform: - the new version introduces an api to construct device private page tables and enables to use device private address space mode - simplified the resource management: no more single platfor

[PATCH 4/7] v4l: videobuf2: add Samsung SYSMMU (IOMMU) based allocator

2011-03-04 Thread Marek Szyprowski
From: Andrzej Pietrasiewicz This patch adds new videobuf2 memory allocator dedicated to Samsung SoC series with IOMMU module. It requires s5p-sysmmu low level driver for controlling iommu. This allocator aquires memory with standard alloc_page() call and doesn't suffer from memory fragmentation i

[PATCH 2/7] ARM: S5PV310: power domains: fixes and code cleanup

2011-03-04 Thread Marek Szyprowski
From: Tomasz Stanislawski This patch extends power domain driver with support for enabling and disabling modules in S5P_CLKGATE_BLOCK register. It also performs a little code cleanup to avoid confusion between s5pv310_device_pd array index and power domain id. Signed-off-by: Tomasz Stanislawski

[PATCH 7/7] ARM: S5PC210: enable FIMC on Universal_C210

2011-03-04 Thread Marek Szyprowski
This patch adds definitions to enable support for s5p-fimc driver together with required power domains and sysmmu controller on Universal C210 board. Signed-off-by: Marek Szyprowski Signed-off-by: Kyungmin Park --- arch/arm/mach-s5pv310/Kconfig |6 ++ arch/arm/mach-s5pv310

[PATCH 6/7] s5p-fimc: Add support for vb2-s5p-iommu allocator

2011-03-04 Thread Marek Szyprowski
This patch adds support for videobuf2-s5p-iommu allocator to s5p-fimc driver. This allocator is selected only on systems that contains support for S5P SYSMMU module. Otherwise the standard videobuf2-dma-contig is used. Signed-off-by: Marek Szyprowski Signed-off-by: Kyungmin Park --- drivers/med

[PATCH/RFC 0/7] Samsung IOMMU videobuf2 allocator and s5p-fimc update

2011-03-04 Thread Marek Szyprowski
Hello, This patch series introduces new type of videbuf2 memory allocator - vb2-s5p-iommu. This allocator can be used only on Samsung SoCs that have IOMMU module. Currently only Samsung EXYNOS4 (former S5PV310) platform has SYSMMU modules. The allocator is then used by s5p-fimc driver. To make it

[PATCH 1/7] ARM: S5PV310: Add platform definitions for FIMC

2011-03-04 Thread Marek Szyprowski
From: Sylwester Nawrocki Add support for fourth FIMC platform device definition and define resources for FIMC modules on S5PV310 machines. Signed-off-by: Sylwester Nawrocki Signed-off-by: Kyungmin Park Signed-off-by: Marek Szyprowski --- arch/arm/mach-s5pv310/cpu.c|7

[PATCH 5/7] s5p-fimc: add pm_runtime support

2011-03-04 Thread Marek Szyprowski
This patch adds basic support for pm_runtime to s5p-fimc driver. PM runtime support is required to enable the driver on S5PV310 series with power domain driver enabled. Signed-off-by: Marek Szyprowski Signed-off-by: Kyungmin Park --- drivers/media/video/s5p-fimc/fimc-capture.c |5 + dri

[PATCH 4/4] omap3isp: lane shifter support

2011-03-04 Thread Michael Jones
Signed-off-by: Michael Jones --- drivers/media/video/omap3-isp/isp.c | 82 +- drivers/media/video/omap3-isp/isp.h |4 +- drivers/media/video/omap3-isp/ispccdc.c |2 +- drivers/media/video/omap3-isp/ispvideo.c | 65 +--- drive

[PATCH 3/4] omap3isp: ccdc: support Y10, Y12, SGRBG8, SBGGR8

2011-03-04 Thread Michael Jones
Signed-off-by: Michael Jones --- drivers/media/video/omap3-isp/ispccdc.c |4 drivers/media/video/omap3-isp/ispvideo.c |8 2 files changed, 12 insertions(+), 0 deletions(-) diff --git a/drivers/media/video/omap3-isp/ispccdc.c b/drivers/media/video/omap3-isp/ispccdc.c inde

[PATCH 2/4] media: add 8-bit bayer formats and Y12

2011-03-04 Thread Michael Jones
Signed-off-by: Michael Jones --- include/linux/v4l2-mediabus.h |7 +-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/include/linux/v4l2-mediabus.h b/include/linux/v4l2-mediabus.h index 7054a7a..46caecd 100644 --- a/include/linux/v4l2-mediabus.h +++ b/include/linux/v4l2-m

[PATCH 1/4] v4l: add V4L2_PIX_FMT_Y12 format

2011-03-04 Thread Michael Jones
Signed-off-by: Michael Jones --- include/linux/videodev2.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/linux/videodev2.h b/include/linux/videodev2.h index 02da9e7..6fac463 100644 --- a/include/linux/videodev2.h +++ b/include/linux/videodev2.h @@ -288,6 +288,7

[PATCH 0/4] OMAP3-ISP lane shifter support

2011-03-04 Thread Michael Jones
Add support for the ISP's lane shifter. To use the shifter, set different pixel formats at each end of the link at the CCDC input. This has only been tested shifting Y12 and SBGGR12 from a parallel sensor to Y8 and SBGGR12 (respectively) at the CCDC input. Support has also been added for other f