Re: [PATCH 0/6] drivers: convert struct spinlock to spinlock_t

2012-11-30 Thread Arend van Spriel
On 11/30/2012 09:25 PM, Luis R. Rodriguez wrote: > On Fri, Nov 30, 2012 at 11:18 AM, Luis R. Rodriguez > wrote: >> On Fri, Nov 30, 2012 at 12:38 AM, Arend van Spriel >> wrote: >>> So what is the rationale here. During mainlining our drivers we had to >>> remove all uses of 'typedef struct foo fo

cron job: media_tree daily build: ERRORS

2012-11-30 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:Fri Nov 30 19:00:20 CET 2012 git hash:d8658bca2e5696df2b6c69bc5538f8fe54e4a01e gcc version: i686-linux-gcc (GCC

Re: [PATCH 0/6] drivers: convert struct spinlock to spinlock_t

2012-11-30 Thread Luis R. Rodriguez
On Fri, Nov 30, 2012 at 11:18 AM, Luis R. Rodriguez wrote: > On Fri, Nov 30, 2012 at 12:38 AM, Arend van Spriel wrote: >> So what is the rationale here. During mainlining our drivers we had to >> remove all uses of 'typedef struct foo foo_t;'. The Linux CodingStyle >> (chapter 5 Typedefs) is spen

Re: [PATCH 0/6] drivers: convert struct spinlock to spinlock_t

2012-11-30 Thread Luis R. Rodriguez
On Fri, Nov 30, 2012 at 12:38 AM, Arend van Spriel wrote: > So what is the rationale here. During mainlining our drivers we had to > remove all uses of 'typedef struct foo foo_t;'. The Linux CodingStyle > (chapter 5 Typedefs) is spending a number of lines explaining why. > > So is spinlock_t an ex

[PATCH] [media] mx2_camera: Convert it to platform driver

2012-11-30 Thread Fabio Estevam
Converting it to platform code can make the code smaller. Signed-off-by: Fabio Estevam --- drivers/media/platform/soc_camera/mx2_camera.c | 15 ++- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/drivers/media/platform/soc_camera/mx2_camera.c b/drivers/media/platfor

Re: [PATCH] [media] v4l: Add mt9v034 sensor driver

2012-11-30 Thread Alexey Klimov
Hi Enric, May i ask about mt9v034_probe() and mt9v034_remove()? On Fri, Oct 5, 2012 at 2:34 PM, Enric Balletbo i Serra wrote: > From: Enric Balletbo i Serra > > The MT9V034 is a parallel wide VGA sensor from Aptina (formerly Micron) > controlled through I2C. > > The driver creates a V4L2 subdev

Re: [PATCH v6] [media] vivi: Teach it to tune FPS

2012-11-30 Thread Kirill Smelkov
On Fri, Nov 30, 2012 at 12:10:59PM +0100, Hans Verkuil wrote: > On Fri November 30 2012 12:02:14 Kirill Smelkov wrote: [...] > > P.S. Hans, if this is ok for you, would you please add your ack? > > > > Looks good to me! > > Acked-by: Hans Verkuil Thanks! -- To unsubscribe from this list: send

[PATCH v4 8/9] davinci: vpfe: dm365: add build infrastructure for capture driver

2012-11-30 Thread Prabhakar Lad
From: Manjunath Hadli add build infrastructure for dm365 specific modules for VPFE capture driver. Signed-off-by: Manjunath Hadli Signed-off-by: Lad, Prabhakar Acked-by: Laurent Pinchart Acked-by: Sakari Ailus Acked-by: Hans Verkuil --- drivers/staging/media/Kconfig |2 ++

[PATCH v4 9/9] davinci: vpfe: Add documentation and TODO

2012-11-30 Thread Prabhakar Lad
From: Manjunath Hadli Add documentation on the Davinci VPFE driver. Document the subdevs, and private IOTCLs the driver implements. This patch also includes the TODO's to fit into drivers/media/ folder. Signed-off-by: Manjunath Hadli Signed-off-by: Lad, Prabhakar Acked-by: Laurent Pinchart Ac

[PATCH v4 6/9] davinci: vpfe: dm365: add IPIPE hardware layer support

2012-11-30 Thread Prabhakar Lad
From: Manjunath Hadli IPIPE is the hardware IP which implements the functionality required for resizer, ipipe(colorspace converter) and the associated hardware support. This patch implements hardware setup including coefficient programming for various hardware filters, gamma, cfa and clock enabli

[PATCH v4 3/9] davinci: vpfe: dm365: add IPIPEIF driver based on media framework

2012-11-30 Thread Prabhakar Lad
From: Manjunath Hadli add support for dm365 IPIPEIF driver based on media framework. The IPIPEIF is exposed as a subdev, and it supports features like fault pixel correction, dark frame subtraction and other necessary hardware setup. Signed-off-by: Manjunath Hadli Signed-off-by: Lad, Prabhakar

[PATCH v4 2/9] davinci: vpfe: add v4l2 video driver support

2012-11-30 Thread Prabhakar Lad
From: Manjunath Hadli Add a generic video driver functionality to be used by all the vpfe drivers for davinci SoCs. The functionality includes all the standard v4l2 interfaces including streaming. The video node interface can be used both as an input and output node for both continuous and single

Re: [RFC v2 3/5] video: display: Add MIPI DBI bus support

2012-11-30 Thread Tomi Valkeinen
Hi, On 2012-11-22 23:45, Laurent Pinchart wrote: > From: Laurent Pinchart > > Signed-off-by: Laurent Pinchart > --- > drivers/video/display/Kconfig|4 + > drivers/video/display/Makefile |1 + > drivers/video/display/mipi-dbi-bus.c | 228 > +++

[PATCH v4 0/9] Media Controller capture driver for DM365

2012-11-30 Thread Prabhakar Lad
From: Lad, Prabhakar The below series of patches have gone through good amount of reviews, and agreed by Laurent, Hans and Sakari to be part of the staging tree. This patch set adds media controller based capture driver for DM365. This driver bases its design on Laurent Pinchart's Media Control

[PATCH v4 2/3] davinci: vpss: dm365: set vpss clk ctrl

2012-11-30 Thread Prabhakar Lad
From: Manjunath Hadli request_mem_region for VPSS_CLK_CTRL register and ioremap. and enable clocks appropriately. Signed-off-by: Manjunath Hadli Signed-off-by: Lad, Prabhakar --- drivers/media/platform/davinci/vpss.c | 15 +++ 1 files changed, 15 insertions(+), 0 deletions(-) d

[PATCH v4 3/3] davinci: vpss: dm365: add vpss helper functions to be used in the main driver for setting hardware parameters

2012-11-30 Thread Prabhakar Lad
From: Manjunath Hadli add interface functions to set sync polarity, interrupt completion and pageframe size in vpss to be used by the main driver. Signed-off-by: Manjunath Hadli Signed-off-by: Lad, Prabhakar --- drivers/media/platform/davinci/vpss.c | 32 in

[PATCH v4 1/3] davinci: vpss: dm365: enable ISP registers

2012-11-30 Thread Prabhakar Lad
From: Manjunath Hadli enable the clocks required for VPFE to work in PCCR register, and enbale ISIF out on BCR to get the correct operation from ISIF. Signed-off-by: Manjunath Hadli Signed-off-by: Lad, Prabhakar --- drivers/media/platform/davinci/vpss.c | 23 ++- 1 files

[PATCH v4 0/3] Davinci VPSS helper functions for VPFE

2012-11-30 Thread Prabhakar Lad
From: Lad, Prabhakar This patch series adds helper functions and enables the VPSS and ISP registers required for VPFE to work. Changes for v4: 1: Fixed review comment from Sakari. Manjunath Hadli (3): davinci: vpss: dm365: enable ISP registers davinci: vpss: dm365: set vpss clk ctrl davin

Re: stv090x: possible bug with 8psk,fec=5/6

2012-11-30 Thread N. D.
> > > I own a Skystar USB HD which I use with vdr. Ever since I bought the card > > > I have been having some strange issues with 11817V on Astra 23.5E. Femon > > > reports that there is a lock and sound comes but the image is completely > > > garbled. The same setup (Kernel: 3.3.8, VDR: 1.7.27

Re: [PATCH v6] [media] vivi: Teach it to tune FPS

2012-11-30 Thread Hans Verkuil
On Fri November 30 2012 12:02:14 Kirill Smelkov wrote: > On Mon, Nov 19, 2012 at 09:52:36AM +0400, Kirill Smelkov wrote: > > On Sun, Nov 18, 2012 at 07:25:38AM -0200, Mauro Carvalho Chehab wrote: > > > Em 18-11-2012 07:24, Mauro Carvalho Chehab escreveu: > > > >Em 17-11-2012 08:45, Kirill Smelkov e

Re: [PATCH v6] [media] vivi: Teach it to tune FPS

2012-11-30 Thread Kirill Smelkov
On Mon, Nov 19, 2012 at 09:52:36AM +0400, Kirill Smelkov wrote: > On Sun, Nov 18, 2012 at 07:25:38AM -0200, Mauro Carvalho Chehab wrote: > > Em 18-11-2012 07:24, Mauro Carvalho Chehab escreveu: > > >Em 17-11-2012 08:45, Kirill Smelkov escreveu: > > >>On Fri, Nov 16, 2012 at 01:46:58PM -0200, Mauro

[GIT PULL FOR v3.8] Update MAINTAINERS file

2012-11-30 Thread Hans Verkuil
Hi Mauro, This updates the MAINTAINERS file with all the drivers I'm supporting/maintaining or do odd fixes for. Regards, Hans The following changes since commit d8658bca2e5696df2b6c69bc5538f8fe54e4a01e: [media] omap3isp: Replace cpu_is_omap3630() with ISP revision check (2012-11-2

Re: [PATCH v3 0/9] Media Controller capture driver for DM365

2012-11-30 Thread Hans Verkuil
On Fri November 30 2012 10:47:39 Sakari Ailus wrote: > On Wed, Nov 28, 2012 at 04:12:00PM +0530, Prabhakar Lad wrote: > > From: Manjunath Hadli > > > > Mauro/Greg, > > The below series of patches have gone through good amount of reviews, and > > agreed by Laurent, Hans and Sakari to be part of t

Re: [PATCH v3 0/9] Media Controller capture driver for DM365

2012-11-30 Thread Sakari Ailus
On Wed, Nov 28, 2012 at 04:12:00PM +0530, Prabhakar Lad wrote: > From: Manjunath Hadli > > Mauro/Greg, > The below series of patches have gone through good amount of reviews, and > agreed by Laurent, Hans and Sakari to be part of the staging tree. I am > combining > the patchs with the pull req

Re: [RFC v2 2/5] video: panel: Add DPI panel support

2012-11-30 Thread Philipp Zabel
Hi Laurent, Am Donnerstag, den 22.11.2012, 22:45 +0100 schrieb Laurent Pinchart: > From: Laurent Pinchart > > Signed-off-by: Laurent Pinchart > --- > drivers/video/display/Kconfig | 13 +++ > drivers/video/display/Makefile|1 + > drivers/video/display/panel-dpi.c | 147 > ++

Re: [PATCH 0/6] drivers: convert struct spinlock to spinlock_t

2012-11-30 Thread Arend van Spriel
On 11/29/2012 09:45 PM, Luis R. Rodriguez wrote: > From: "Luis R. Rodriguez" > > Turns out a few drivers have strayed away from using the > spinlock_t typedef and decided to use struct spinlock > directly. This series converts these drivers to use > spinlock_t. Each change has been compile tested