linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
  • * [PATCH] Add RGB555X and RGB565X formats to pxa-camera
           [not found]   ` <Pine.LNX.4.64.0908031415370.5310@axis700.grange>
           [not found]     ` <4A76DF29.1050008@compulab.co.il>
    @ 2009-09-05  7:26     ` Marek Vasut
      2009-09-05  8:55       ` Guennadi Liakhovetski
      1 sibling, 1 reply; 19+ messages in thread
    From: Marek Vasut @ 2009-09-05  7:26 UTC (permalink / raw)
      To: linux-arm-kernel
    
    Dne Po 3. srpna 2009 14:31:12 Guennadi Liakhovetski napsal(a):
    > On Mon, 3 Aug 2009, Eric Miao wrote:
    > > Marek Vasut wrote:
    > > > Hi!
    > > >
    > > > Eric, would you mind applying ?
    > > >
    > > > From 4dcbff010e996f4c6e5761b3c19f5d863ab51b39 Mon Sep 17 00:00:00 2001
    > > > From: Marek Vasut <marek.vasut@gmail.com>
    > > > Date: Mon, 3 Aug 2009 10:27:57 +0200
    > > > Subject: [PATCH] Add RGB555X and RGB565X formats to pxa-camera
    > > >
    > > > Those formats are requiered on widely used OmniVision OV96xx cameras.
    > > > Those formats are nothing more then endian-swapped RGB555 and RGB565.
    > > >
    > > > Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
    > >
    > > Acked-by: Eric Miao <eric.y.miao@gmail.com>
    > >
    > > Guennadi,
    > >
    > > Would be better if this gets merged by you, thanks.
    >
    > Indeed it would, and I do have a couple of questions to this and related
    > patches:
    >
    > 1. Marek, you're saying, you need these formats for the OV96xx camera. Yre
    > you using the patch from Stefan Herbrechtsmeier to support ov96xx or some
    > other?
    >
    > 2. Mike, while reviewing this patch I came across code in
    > pxa_camera_setup_cicr(), introduced by your earlier patch:
    >
    > 	case V4L2_PIX_FMT_RGB555:
    > 		cicr1 |= CICR1_RGB_BPP_VAL(1) | CICR1_RGBT_CONV_VAL(2) |
    > 			CICR1_TBIT | CICR1_COLOR_SP_VAL(1);
    > 		break;
    >
    > Why are you enabling the RGB to RGBT conversion here unconditionally?
    > Generally, what are the advantages of configuring CICR1 for a specific RGB
    > format compared to using just a raw capture? Do I understand it right,
    > that ATM we are not using any of those features?
    >
    > Thanks
    > Guennadi
    >
    > > > ---
    > > >  drivers/media/video/pxa_camera.c |    4 ++++
    > > >  1 files changed, 4 insertions(+), 0 deletions(-)
    > > >
    > > > diff --git a/drivers/media/video/pxa_camera.c
    > > > b/drivers/media/video/pxa_camera.c
    > > > index 46e0d8a..de0fc8a 100644
    > > > --- a/drivers/media/video/pxa_camera.c
    > > > +++ b/drivers/media/video/pxa_camera.c
    > > > @@ -1222,6 +1222,8 @@ static int required_buswidth(const struct
    > > > soc_camera_data_format *fmt)
    > > >  	case V4L2_PIX_FMT_YVYU:
    > > >  	case V4L2_PIX_FMT_RGB565:
    > > >  	case V4L2_PIX_FMT_RGB555:
    > > > +	case V4L2_PIX_FMT_RGB565X:
    > > > +	case V4L2_PIX_FMT_RGB555X:
    > > >  		return 8;
    > > >  	default:
    > > >  		return fmt->depth;
    > > > @@ -1260,6 +1262,8 @@ static int pxa_camera_get_formats(struct
    > > > soc_camera_device *icd, int idx,
    > > >  	case V4L2_PIX_FMT_YVYU:
    > > >  	case V4L2_PIX_FMT_RGB565:
    > > >  	case V4L2_PIX_FMT_RGB555:
    > > > +	case V4L2_PIX_FMT_RGB565X:
    > > > +	case V4L2_PIX_FMT_RGB555X:
    > > >  		formats++;
    > > >  		if (xlate) {
    > > >  			xlate->host_fmt = icd->formats + idx;
    >
    > ---
    > Guennadi Liakhovetski
    
    What should we do with this patch? Any updates? I spoke to Guennadi and he 
    thinks it's not a good idea to apply it (as pxaqci doesnt support those 
    formats). But to my understanding, those formats are endian-swapped versions of 
    the other ones without X at the end so there shouldnt be a problem with it.
    
    ^ permalink raw reply	[flat|nested] 19+ messages in thread

  • end of thread, other threads:[~2009-09-07 12:10 UTC | newest]
    
    Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
    -- links below jump to the message on this page --
         [not found] <200908031031.00676.marek.vasut@gmail.com>
         [not found] ` <4A76CB7C.10401@gmail.com>
         [not found]   ` <Pine.LNX.4.64.0908031415370.5310@axis700.grange>
         [not found]     ` <4A76DF29.1050008@compulab.co.il>
    2009-09-04 19:05       ` [PATCH] Add RGB555X and RGB565X formats to pxa-camera Guennadi Liakhovetski
    2009-09-06  6:03         ` Mike Rapoport
    2009-09-05  7:26     ` Marek Vasut
    2009-09-05  8:55       ` Guennadi Liakhovetski
    2009-09-05  9:49         ` Marek Vasut
    2009-09-05 20:19           ` Guennadi Liakhovetski
    2009-09-05 21:17             ` Marek Vasut
    2009-09-05 22:05               ` Guennadi Liakhovetski
    2009-09-06  3:50                 ` Marek Vasut
    2009-09-06 16:52                   ` Guennadi Liakhovetski
    2009-09-06 17:51                     ` Marek Vasut
    2009-09-06 18:15                       ` Guennadi Liakhovetski
    2009-09-07  4:46                         ` Marek Vasut
    2009-09-07  6:22                           ` Guennadi Liakhovetski
    2009-09-07  8:50                             ` Marek Vasut
    2009-09-07 10:21                               ` Robert Jarzmik
    2009-09-07 11:53                                 ` Marek Vasut
    2009-09-07 12:10                                   ` Guennadi Liakhovetski
    2009-09-05 15:22         ` Jamie Lokier
    

    This is a public inbox, see mirroring instructions
    for how to clone and mirror all data and code used for this inbox;
    as well as URLs for NNTP newsgroup(s).