Re: My Microdia (SN9C201) webcam doesn't work properly in Linux anymore

2012-03-03 Thread Jean-Francois Moine
On Sun, 4 Mar 2012 11:25:19 +1100 Xavion wrote: > Thanks for letting me know that this problem will be fixed in Linux > v3.3. It could be several weeks before my distribution releases that > kernel. Dropping back to Linux v3.1 isn't an option, as my NVIDIA > driver requires Linux v3.2. Can the

Re: My Microdia (SN9C201) webcam doesn't work properly in Linux anymore

2012-03-03 Thread Xavion
Hi Hans Thanks for letting me know that this problem will be fixed in Linux v3.3. It could be several weeks before my distribution releases that kernel. Dropping back to Linux v3.1 isn't an option, as my NVIDIA driver requires Linux v3.2. Can the fix for this problem also be applied to Linux v3

Re: [PATCH v3 09/10] v4l: Aptina-style sensor PLL support

2012-03-03 Thread Sakari Ailus
Hi Laurent, Thanks for the patch! On Sat, Mar 03, 2012 at 04:28:14PM +0100, Laurent Pinchart wrote: > Add a generic helper function to compute PLL parameters for PLL found in > several Aptina sensors. > > Signed-off-by: Laurent Pinchart > --- > drivers/media/video/Kconfig |3 + > driv

Re: [PATCH] media: fimc-lite: Add new driver for camera interface

2012-03-03 Thread Sylwester Nawrocki
Hi Sungchun, On 02/15/2012 07:05 AM, Sungchun Kang wrote: > This patch adds support fimc-lite device which is a new device > for camera interface on EXYNOS5 SoCs. It's also available in the Exynos4 SoC and I was planning adding it at the s5p-fimc driver eventually. It may take some time though si

cron job: media_tree daily build: WARNINGS

2012-03-03 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:Sat Mar 3 19:00:19 CET 2012 git hash:e8ca6d20a65d9d94693a0ed99b12d95b882dc859 gcc version: i686-linux-gcc (GCC

Re: [PATCH v3 09/10] v4l: Aptina-style sensor PLL support

2012-03-03 Thread Andy Walls
On Sat, 2012-03-03 at 12:35 -0500, Andy Walls wrote: > On Sat, 2012-03-03 at 16:28 +0100, Laurent Pinchart wrote: > > Add a generic helper function to compute PLL parameters for PLL found in > > several Aptina sensors. > > > > Signed-off-by: Laurent Pinchart > > --- > > drivers/media/video/Kconf

Re: [PATCH v3 09/10] v4l: Aptina-style sensor PLL support

2012-03-03 Thread Andy Walls
On Sat, 2012-03-03 at 16:28 +0100, Laurent Pinchart wrote: > Add a generic helper function to compute PLL parameters for PLL found in > several Aptina sensors. > > Signed-off-by: Laurent Pinchart > --- > drivers/media/video/Kconfig |3 + > drivers/media/video/Makefile |4 + > dr

[PATCH v3 10/10] mt9m032: Use generic PLL setup code

2012-03-03 Thread Laurent Pinchart
Compute the PLL parameters at runtime using the generic Aptina PLL helper. Remove the PLL parameters from platform data and pass the external clock and desired internal clock frequencies instead. Signed-off-by: Laurent Pinchart --- drivers/media/video/Kconfig |1 + drivers/media/video/mt9

[PATCH v3 08/10] mt9m032: Remove unneeded register read

2012-03-03 Thread Laurent Pinchart
There's not need to read register MT9M032_READ_MODE1 when setting up the PLL. Remove the read call. Signed-off-by: Laurent Pinchart --- drivers/media/video/mt9m032.c |5 + 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/drivers/media/video/mt9m032.c b/drivers/media/video/m

[PATCH v3 07/10] mt9m032: Put HFLIP and VFLIP controls in a cluster

2012-03-03 Thread Laurent Pinchart
HFLIP and VFLIP are often set together to rotate the image by 180°. Putting the controls in a cluster makes sure they will always be applied together, getting rid of a race condition that could result in one bad frame. Signed-off-by: Laurent Pinchart --- drivers/media/video/mt9m032.c | 43

[PATCH v3 06/10] mt9m032: Pass an i2c_client pointer to the register read/write functions

2012-03-03 Thread Laurent Pinchart
Replace the mt9m032 * argument to register read/write functions with an i2c_client *. As the register access functions are often called several times in a single location, this removes several casts at runtime. Signed-off-by: Laurent Pinchart --- drivers/media/video/mt9m032.c | 78

[PATCH v3 02/10] mt9m032: Reorder code into section and whitespace cleanups

2012-03-03 Thread Laurent Pinchart
Signed-off-by: Laurent Pinchart --- drivers/media/video/mt9m032.c | 162 +--- 1 files changed, 85 insertions(+), 77 deletions(-) diff --git a/drivers/media/video/mt9m032.c b/drivers/media/video/mt9m032.c index 92495f7..b6ef69f 100644 --- a/drivers/media/video

[PATCH v3 01/10] v4l: Add driver for Micron MT9M032 camera sensor

2012-03-03 Thread Laurent Pinchart
From: Martin Hostettler The MT9M032 is a parallel 1.6MP sensor from Micron controlled through I2C. The driver creates a V4L2 subdevice. It currently supports cropping, gain, exposure and v/h flipping controls in monochrome mode with an external pixel clock. Signed-off-by: Martin Hostettler ---

[PATCH v3 05/10] mt9m032: Enclose to_dev() macro argument in brackets

2012-03-03 Thread Laurent Pinchart
To make the macro safer to use, enclose its argument in brackets in the macro's body. Signed-off-by: Laurent Pinchart --- drivers/media/video/mt9m032.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/media/video/mt9m032.c b/drivers/media/video/mt9m032.c index a

[PATCH v3 09/10] v4l: Aptina-style sensor PLL support

2012-03-03 Thread Laurent Pinchart
Add a generic helper function to compute PLL parameters for PLL found in several Aptina sensors. Signed-off-by: Laurent Pinchart --- drivers/media/video/Kconfig |3 + drivers/media/video/Makefile |4 + drivers/media/video/aptina-pll.c | 175 +

[PATCH v3 03/10] mt9m032: Make get/set format/crop operations consistent across drivers

2012-03-03 Thread Laurent Pinchart
Modify the get/set format/crop operation handlers to match the existing pad-aware Aptina sensor drivers. Signed-off-by: Laurent Pinchart --- drivers/media/video/mt9m032.c | 132 +++-- 1 files changed, 61 insertions(+), 71 deletions(-) diff --git a/drivers/me

[PATCH v3 04/10] mt9m032: Use module_i2c_driver() macro

2012-03-03 Thread Laurent Pinchart
Replace the custom driver init and exit functions by module_i2c_driver(). Signed-off-by: Laurent Pinchart --- drivers/media/video/mt9m032.c | 19 +-- 1 files changed, 1 insertions(+), 18 deletions(-) diff --git a/drivers/media/video/mt9m032.c b/drivers/media/video/mt9m032.c in

[PATCH v3 00/10] MT9M032 sensor driver

2012-03-03 Thread Laurent Pinchart
Hi everybody, Here's the third version of the Aptina MT9M032 sensor driver, originally written by Martin Hostettler. Compared to the second version, I've optimized the PLL code to get rid of the inner loop. The limits are now declared as static const in the mt9m032 driver. Laurent Pinchart (9):

Re: [PATCH v2 10/10] mt9m032: Use generic PLL setup code

2012-03-03 Thread Laurent Pinchart
Hi Sakari, Thanks for the review. On Saturday 03 March 2012 00:41:26 Sakari Ailus wrote: > On Fri, Mar 02, 2012 at 11:44:07AM +0100, Laurent Pinchart wrote: > > Compute the PLL parameters at runtime using the generic Aptina PLL > > helper. > > > > Remove the PLL parameters from platform data and

Re: [PATCH v2 09/10] v4l: Aptina-style sensor PLL support

2012-03-03 Thread Laurent Pinchart
Hi Sakari, Thanks for the review. On Friday 02 March 2012 20:46:21 Sakari Ailus wrote: > On Fri, Mar 02, 2012 at 11:44:06AM +0100, Laurent Pinchart wrote: > > Add a generic helper function to compute PLL parameters for PLL found in > > several Aptina sensors. > > > > Signed-off-by: Laurent Pinch

Re: [PATCH] media: jpeg: add driver for a version 2.x of jpeg H/W

2012-03-03 Thread Sylwester Nawrocki
Hi 송영목, On 03/02/2012 12:46 AM, 송영목 wrote: > This patch add a driver for a version 2.x of jpeg H/W s/add/adds > in ths Samsung Exynos5 Soc. s/ths/the > A jpeg H/W version of Exynos4 SoC is 3.0 > > 1. Encoding > - input format : V4L2_PIX_FMT_RGB565X and V4L2_PIX_FMT_YUYV > > 2. Decoding > -