[3/3] OMAP2/3 V4L2 Display Driver

Message ID 90b950fc0904292317m500820efv66755aed31b46853@mail.gmail.com (mailing list archive)
State Rejected, archived
Headers

Commit Message

InKi Dae April 30, 2009, 6:17 a.m. UTC
  hello Shah, Hardik..

your omap_vout.c has the problem that it disables video1 or fb1.
so I have modified your code.

I defined and set platform_data for DSS2 in machine code.(or board file)

static struct omapfb_platform_data xxx_dss_platform_data = {
    .mem_desc.region[0].format = OMAPFB_COLOR_ARGB32,
    .mem_desc.region[0].format_used=1,

    .mem_desc.region[1].format = OMAPFB_COLOR_RGB24U,
    .mem_desc.region[1].format_used=1,

    .mem_desc.region[2].format = OMAPFB_COLOR_ARGB32,
    .mem_desc.region[2].format_used=1,
};

omapfb_set_platform_data(&xxx_dss_platform_data);

after that, omap_vout has resource count got referring to framebuffer count,
registers overlay as vout's one and would decide to use which overlay.

at that time, your code would face with impact on some overlay(fb or video).

this patch would solve that problem.
when it sets overlay to vout, vout would get overlay array index to
avoid overlapping with other overlay.


sighed-off-by: InKi Dae. <inki.dae@samsung.com>
---
 		/* Setup the default configuration for the video devices
@@ -2289,7 +2291,7 @@ static int __init
omap_vout_create_video_devices(struct platform_device *pdev)
 		/* Register the Video device with V4L2
 		 */
 		vfd = vout->vfd;
-		if (video_register_device(vfd, VFL_TYPE_GRABBER, k + 1) < 0) {
+		if (video_register_device(vfd, VFL_TYPE_GRABBER, k + vout_count) < 0) {
 			printk(KERN_ERR VOUT_NAME ": could not register \
 					Video for Linux device\n");
 			vfd->minor = -1;


2009/4/22 Shah, Hardik <hardik.shah@ti.com>:
>
>
>> -----Original Message-----
>> From: Tomi Valkeinen [mailto:tomi.valkeinen@nokia.com]
>> Sent: Wednesday, April 22, 2009 1:53 PM
>> To: Shah, Hardik
>> Cc: linux-media@vger.kernel.org; linux-omap@vger.kernel.org; Jadav, Brijesh R;
>> Hiremath, Vaibhav
>> Subject: Re: [PATCH 3/3] OMAP2/3 V4L2 Display Driver
>>
>> Hi,
>>
>> On Wed, 2009-04-22 at 08:25 +0200, ext Hardik Shah wrote:
>> > This is the version 5th of the Driver.
>> >
>> > Following are the features supported.
>> > 1. Provides V4L2 user interface for the video pipelines of DSS
>> > 2. Basic streaming working on LCD and TV.
>> > 3. Support for various pixel formats like YUV, UYVY, RGB32, RGB24, RGB565
>> > 4. Supports Alpha blending.
>> > 5. Supports Color keying both source and destination.
>> > 6. Supports rotation with RGB565 and RGB32 pixels formats.
>> > 7. Supports cropping.
>> > 8. Supports Background color setting.
>> > 9. Works on latest DSS2 library from Tomi
>> > http://www.bat.org/~tomba/git/linux-omap-dss.git/
>> > 10. 1/4x scaling added.  Detail testing left
>> >
>> > TODOS
>> > 1. Ioctls needs to be added for color space conversion matrix
>> > coefficient programming.
>> > 2. To be tested on DVI resolutions.
>> >
>> > Comments fixed from community.
>> > 1. V4L2 Driver for OMAP3/3 DSS.
>> > 2.  Conversion of the custom ioctls to standard V4L2 ioctls like alpha
>> blending,
>> > color keying, rotation and back ground color setting
>> > 3.  Re-organised the code as per community comments.
>> > 4.  Added proper copyright year.
>> > 5.  Added module name in printk
>> > 6.  Kconfig option copy/paste error
>> > 7.  Module param desc addded.
>> > 8.  Query control implemented using standard query_fill
>> > 9.  Re-arranged if-else constructs.
>> > 10. Changed to use mutex instead of semaphore.
>> > 11. Removed dual usage of rotation angles.
>> > 12. Implemented function to convert the V4L2 angle to DSS angle.
>> > 13. Y-position was set half by video driver for TV output
>> > Now its done by DSS so removed that.
>> > 14. Minor cleanup
>> > 15. Added support to pass the page offset to application.
>> > 14. Minor cleanup
>> > 15. Added support to pass the page offset to application.
>> > 16. Renamed V4L2_CID_ROTATION to V4L2_CID_ROTATE
>> > 17. Major comment from Hans fixed.
>> > 18. Copy right year changed.
>> > 19. Added module name for each error/warning print message.
>> >
>> > Changes from Previous Version.
>> > 1. Supported YUV rotation.
>> > 2. Supported Flipping.
>> > 3. Rebased line with Tomi's latest DSS2 master branch with commit  id
>> > f575a02edf2218a18d6f2ced308b4f3e26b44ce2.
>> > 4. Kconfig option removed to select between the TV and LCD.
>> > Now supported dynamically by DSS2 library.
>> > 5. Kconfig option for the NTSC_M and PAL_BDGHI mode but not
>> > supported by DSS2.  so it will not work now.
>>
>> There is basic support for this. See the DSS doc:
>>
>> /sys/devices/platform/omapdss/display? directory:
>> ...
>> timings         Display timings (pixclock,xres/hfp/hbp/hsw,yres/vfp/vbp/vsw)
>>                 When writing, two special timings are accepted for tv-out:
>>                 "pal" and "ntsc"
> [Shah, Hardik] I was not aware of it will remove the compile time option and for now let the sysfs entry change the standard.  In future I will try to do it with the S_STD and G_STD ioctls of the V4L2 framework.
>>
>>  Tomi
>>
>>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
  

Comments

Hardik Shah April 30, 2009, 6:21 a.m. UTC | #1
> -----Original Message-----
> From: InKi Dae [mailto:daeinki@gmail.com]
> Sent: Thursday, April 30, 2009 11:48 AM
> To: Shah, Hardik
> Cc: tomi.valkeinen@nokia.com; linux-media@vger.kernel.org; linux-
> omap@vger.kernel.org; Jadav, Brijesh R; Hiremath, Vaibhav
> Subject: Re: [PATCH 3/3] OMAP2/3 V4L2 Display Driver
> 
> hello Shah, Hardik..
> 
> your omap_vout.c has the problem that it disables video1 or fb1.
> so I have modified your code.
> 
> I defined and set platform_data for DSS2 in machine code.(or board file)
> 
> static struct omapfb_platform_data xxx_dss_platform_data = {
>     .mem_desc.region[0].format = OMAPFB_COLOR_ARGB32,
>     .mem_desc.region[0].format_used=1,
> 
>     .mem_desc.region[1].format = OMAPFB_COLOR_RGB24U,
>     .mem_desc.region[1].format_used=1,
> 
>     .mem_desc.region[2].format = OMAPFB_COLOR_ARGB32,
>     .mem_desc.region[2].format_used=1,
> };
> 
> omapfb_set_platform_data(&xxx_dss_platform_data);
> 
> after that, omap_vout has resource count got referring to framebuffer count,
> registers overlay as vout's one and would decide to use which overlay.
> 
> at that time, your code would face with impact on some overlay(fb or video).
> 
> this patch would solve that problem.
> when it sets overlay to vout, vout would get overlay array index to
> avoid overlapping with other overlay.
> 
> 
> sighed-off-by: InKi Dae. <inki.dae@samsung.com>
> ---
> diff --git a/drivers/media/video/omap/omap_vout.c
> b/drivers/media/video/omap/omap_vout.c
> index 9b4a0d7..051298a 100644
> --- a/drivers/media/video/omap/omap_vout.c
> +++ b/drivers/media/video/omap/omap_vout.c
> @@ -2246,11 +2246,13 @@ free_buffers:
>  /* Create video out devices */
>  static int __init omap_vout_create_video_devices(struct platform_device
> *pdev)
>  {
> -	int r = 0, k;
> +	int r = 0, k, vout_count;
>  	struct omap_vout_device *vout;
>  	struct video_device *vfd = NULL;
>  	struct omap2video_device *vid_dev = platform_get_drvdata(pdev);
> 
> +	vout_count = 3 - pdev->num_resources;
> +
>  	for (k = 0; k < pdev->num_resources; k++) {
> 
>  		vout = kmalloc(sizeof(struct omap_vout_device), GFP_KERNEL);
> @@ -2266,9 +2268,9 @@ static int __init
> omap_vout_create_video_devices(struct platform_device *pdev)
>  		vout->vid = k;
>  		vid_dev->vouts[k] = vout;
>  		vout->vid_info.vid_dev = vid_dev;
> -		vout->vid_info.overlays[0] = vid_dev->overlays[k + 1];
> +		vout->vid_info.overlays[0] = vid_dev->overlays[k + vout_count];
>  		vout->vid_info.num_overlays = 1;
> -		vout->vid_info.id = k + 1;
> +		vout->vid_info.id = k + vout_count;
>  		vid_dev->num_videos++;
> 
>  		/* Setup the default configuration for the video devices
> @@ -2289,7 +2291,7 @@ static int __init
> omap_vout_create_video_devices(struct platform_device *pdev)
>  		/* Register the Video device with V4L2
>  		 */
>  		vfd = vout->vfd;
> -		if (video_register_device(vfd, VFL_TYPE_GRABBER, k + 1) < 0) {
> +		if (video_register_device(vfd, VFL_TYPE_GRABBER, k + vout_count) <
> 0) {
>  			printk(KERN_ERR VOUT_NAME ": could not register \
>  					Video for Linux device\n");
>  			vfd->minor = -1;
> 
> 
> 2009/4/22 Shah, Hardik <hardik.shah@ti.com>:
[Shah, Hardik] Yes this is correct,
I will apply this patch.  I already found it and fixed it in different way but any way I will apply your patch.
> >
> >
> >> -----Original Message-----
> >> From: Tomi Valkeinen [mailto:tomi.valkeinen@nokia.com]
> >> Sent: Wednesday, April 22, 2009 1:53 PM
> >> To: Shah, Hardik
> >> Cc: linux-media@vger.kernel.org; linux-omap@vger.kernel.org; Jadav, Brijesh
> R;
> >> Hiremath, Vaibhav
> >> Subject: Re: [PATCH 3/3] OMAP2/3 V4L2 Display Driver
> >>
> >> Hi,
> >>
> >> On Wed, 2009-04-22 at 08:25 +0200, ext Hardik Shah wrote:
> >> > This is the version 5th of the Driver.
> >> >
> >> > Following are the features supported.
> >> > 1. Provides V4L2 user interface for the video pipelines of DSS
> >> > 2. Basic streaming working on LCD and TV.
> >> > 3. Support for various pixel formats like YUV, UYVY, RGB32, RGB24, RGB565
> >> > 4. Supports Alpha blending.
> >> > 5. Supports Color keying both source and destination.
> >> > 6. Supports rotation with RGB565 and RGB32 pixels formats.
> >> > 7. Supports cropping.
> >> > 8. Supports Background color setting.
> >> > 9. Works on latest DSS2 library from Tomi
> >> > http://www.bat.org/~tomba/git/linux-omap-dss.git/
> >> > 10. 1/4x scaling added.  Detail testing left
> >> >
> >> > TODOS
> >> > 1. Ioctls needs to be added for color space conversion matrix
> >> > coefficient programming.
> >> > 2. To be tested on DVI resolutions.
> >> >
> >> > Comments fixed from community.
> >> > 1. V4L2 Driver for OMAP3/3 DSS.
> >> > 2.  Conversion of the custom ioctls to standard V4L2 ioctls like alpha
> >> blending,
> >> > color keying, rotation and back ground color setting
> >> > 3.  Re-organised the code as per community comments.
> >> > 4.  Added proper copyright year.
> >> > 5.  Added module name in printk
> >> > 6.  Kconfig option copy/paste error
> >> > 7.  Module param desc addded.
> >> > 8.  Query control implemented using standard query_fill
> >> > 9.  Re-arranged if-else constructs.
> >> > 10. Changed to use mutex instead of semaphore.
> >> > 11. Removed dual usage of rotation angles.
> >> > 12. Implemented function to convert the V4L2 angle to DSS angle.
> >> > 13. Y-position was set half by video driver for TV output
> >> > Now its done by DSS so removed that.
> >> > 14. Minor cleanup
> >> > 15. Added support to pass the page offset to application.
> >> > 14. Minor cleanup
> >> > 15. Added support to pass the page offset to application.
> >> > 16. Renamed V4L2_CID_ROTATION to V4L2_CID_ROTATE
> >> > 17. Major comment from Hans fixed.
> >> > 18. Copy right year changed.
> >> > 19. Added module name for each error/warning print message.
> >> >
> >> > Changes from Previous Version.
> >> > 1. Supported YUV rotation.
> >> > 2. Supported Flipping.
> >> > 3. Rebased line with Tomi's latest DSS2 master branch with commit  id
> >> > f575a02edf2218a18d6f2ced308b4f3e26b44ce2.
> >> > 4. Kconfig option removed to select between the TV and LCD.
> >> > Now supported dynamically by DSS2 library.
> >> > 5. Kconfig option for the NTSC_M and PAL_BDGHI mode but not
> >> > supported by DSS2.  so it will not work now.
> >>
> >> There is basic support for this. See the DSS doc:
> >>
> >> /sys/devices/platform/omapdss/display? directory:
> >> ...
> >> timings         Display timings
> (pixclock,xres/hfp/hbp/hsw,yres/vfp/vbp/vsw)
> >>                 When writing, two special timings are accepted for tv-out:
> >>                 "pal" and "ntsc"
> > [Shah, Hardik] I was not aware of it will remove the compile time option and
> for now let the sysfs entry change the standard.  In future I will try to do
> it with the S_STD and G_STD ioctls of the V4L2 framework.
> >>
> >>  Tomi
> >>
> >>
> >
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-media" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> >

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
  
Zhang, Xiaolin April 30, 2009, 8:18 a.m. UTC | #2
Hi All,

Here is the a set of V4L2 camera sensors and ISP drivers to support the Intel Moorestown camera imaging subsystem. The Camera Imaging interface in Moorestown is responsible for capturing both still and video frames. The CI handles demosaicing, color synthesis, filtering, image enhancement functions and JPEG encode. Intel Moorestown platform can support either a single camera or two cameras. A platform with two cameras will have on the same side as this display and the second on the opposite side the display. The camera on the display side will be used for video conferencing (with low resolution SoC cameras) and the other camera is used to still image capture or video recode (with high resolution RAW cameras).

In this set of driver patches, I will submit the 5 patches to enable the ISP HW and 3 cameras module (two SoCs: 1.3MP - Omnivision 9665, 2MP - Omnivison 2650 and one RAW: 5MP - Omnivision 5630).
1. Intel Moorestown ISP driver.
2. Intel Moorestown camera sensor pseudo driver. This is to uniform the interfaces for ISP due to supporting dual cameras. 
3. Intel Moorestown 2MP camera sensor driver.
4. Intel Moorestown 5MP camera sensor driver.
5. Intel Moorestown 1.3MP camera sensor driver.

I will post the above 5 patches in near feature.

Regards,

Xiaolin
Xiaolin.zhang@intel.com

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
  
DongSoo Kim April 30, 2009, 9:32 a.m. UTC | #3
Hello Xiaolin,

I think the first patch is missing. Following your description, it may
be the "Intel Moorestown ISP driver.".
Can you re-post it please?
BTW, I didn't notice that Atom processor had a camera interface, and
even it supports dual camera as well. Can I find some datasheet or
user manual to take a look at how it works?
Cheers,

Nate

On Thu, Apr 30, 2009 at 5:18 PM, Zhang, Xiaolin <xiaolin.zhang@intel.com> wrote:
> Hi All,
>
> Here is the a set of V4L2 camera sensors and ISP drivers to support the Intel Moorestown camera imaging subsystem. The Camera Imaging interface in Moorestown is responsible for capturing both still and video frames. The CI handles demosaicing, color synthesis, filtering, image enhancement functions and JPEG encode. Intel Moorestown platform can support either a single camera or two cameras. A platform with two cameras will have on the same side as this display and the second on the opposite side the display. The camera on the display side will be used for video conferencing (with low resolution SoC cameras) and the other camera is used to still image capture or video recode (with high resolution RAW cameras).
>
> In this set of driver patches, I will submit the 5 patches to enable the ISP HW and 3 cameras module (two SoCs: 1.3MP - Omnivision 9665, 2MP - Omnivison 2650 and one RAW: 5MP - Omnivision 5630).
> 1. Intel Moorestown ISP driver.
> 2. Intel Moorestown camera sensor pseudo driver. This is to uniform the interfaces for ISP due to supporting dual cameras.
> 3. Intel Moorestown 2MP camera sensor driver.
> 4. Intel Moorestown 5MP camera sensor driver.
> 5. Intel Moorestown 1.3MP camera sensor driver.
>
> I will post the above 5 patches in near feature.
>
> Regards,
>
> Xiaolin
> Xiaolin.zhang@intel.com
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
  
Hardik Shah April 30, 2009, 9:50 a.m. UTC | #4
> -----Original Message-----
> From: linux-media-owner@vger.kernel.org [mailto:linux-media-
> owner@vger.kernel.org] On Behalf Of Shah, Hardik
> Sent: Thursday, April 30, 2009 11:51 AM
> To: InKi Dae
> Cc: tomi.valkeinen@nokia.com; linux-media@vger.kernel.org; linux-
> omap@vger.kernel.org; Jadav, Brijesh R; Hiremath, Vaibhav
> Subject: RE: [PATCH 3/3] OMAP2/3 V4L2 Display Driver
> 
> 
> 
> > -----Original Message-----
> > From: InKi Dae [mailto:daeinki@gmail.com]
> > Sent: Thursday, April 30, 2009 11:48 AM
> > To: Shah, Hardik
> > Cc: tomi.valkeinen@nokia.com; linux-media@vger.kernel.org; linux-
> > omap@vger.kernel.org; Jadav, Brijesh R; Hiremath, Vaibhav
> > Subject: Re: [PATCH 3/3] OMAP2/3 V4L2 Display Driver
> >
> > hello Shah, Hardik..
> >
> > your omap_vout.c has the problem that it disables video1 or fb1.
> > so I have modified your code.
> >
> > I defined and set platform_data for DSS2 in machine code.(or board file)
> >
> > static struct omapfb_platform_data xxx_dss_platform_data = {
> >     .mem_desc.region[0].format = OMAPFB_COLOR_ARGB32,
> >     .mem_desc.region[0].format_used=1,
> >
> >     .mem_desc.region[1].format = OMAPFB_COLOR_RGB24U,
> >     .mem_desc.region[1].format_used=1,
> >
> >     .mem_desc.region[2].format = OMAPFB_COLOR_ARGB32,
> >     .mem_desc.region[2].format_used=1,
> > };
> >
> > omapfb_set_platform_data(&xxx_dss_platform_data);
> >
> > after that, omap_vout has resource count got referring to framebuffer count,
> > registers overlay as vout's one and would decide to use which overlay.
> >
> > at that time, your code would face with impact on some overlay(fb or video).
> >
> > this patch would solve that problem.
> > when it sets overlay to vout, vout would get overlay array index to
> > avoid overlapping with other overlay.
> >
> >
> > sighed-off-by: InKi Dae. <inki.dae@samsung.com>
> > ---
> > diff --git a/drivers/media/video/omap/omap_vout.c
> > b/drivers/media/video/omap/omap_vout.c
> > index 9b4a0d7..051298a 100644
> > --- a/drivers/media/video/omap/omap_vout.c
> > +++ b/drivers/media/video/omap/omap_vout.c
> > @@ -2246,11 +2246,13 @@ free_buffers:
> >  /* Create video out devices */
> >  static int __init omap_vout_create_video_devices(struct platform_device
> > *pdev)
> >  {
> > -	int r = 0, k;
> > +	int r = 0, k, vout_count;
> >  	struct omap_vout_device *vout;
> >  	struct video_device *vfd = NULL;
> >  	struct omap2video_device *vid_dev = platform_get_drvdata(pdev);
> >
> > +	vout_count = 3 - pdev->num_resources;
> > +
> >  	for (k = 0; k < pdev->num_resources; k++) {
> >
> >  		vout = kmalloc(sizeof(struct omap_vout_device), GFP_KERNEL);
> > @@ -2266,9 +2268,9 @@ static int __init
> > omap_vout_create_video_devices(struct platform_device *pdev)
> >  		vout->vid = k;
> >  		vid_dev->vouts[k] = vout;
> >  		vout->vid_info.vid_dev = vid_dev;
> > -		vout->vid_info.overlays[0] = vid_dev->overlays[k + 1];
> > +		vout->vid_info.overlays[0] = vid_dev->overlays[k + vout_count];
> >  		vout->vid_info.num_overlays = 1;
> > -		vout->vid_info.id = k + 1;
> > +		vout->vid_info.id = k + vout_count;
> >  		vid_dev->num_videos++;
> >
> >  		/* Setup the default configuration for the video devices
> > @@ -2289,7 +2291,7 @@ static int __init
> > omap_vout_create_video_devices(struct platform_device *pdev)
> >  		/* Register the Video device with V4L2
> >  		 */
> >  		vfd = vout->vfd;
> > -		if (video_register_device(vfd, VFL_TYPE_GRABBER, k + 1) < 0) {
> > +		if (video_register_device(vfd, VFL_TYPE_GRABBER, k + vout_count) <
> > 0) {
> >  			printk(KERN_ERR VOUT_NAME ": could not register \
> >  					Video for Linux device\n");
> >  			vfd->minor = -1;
> >
> >
> > 2009/4/22 Shah, Hardik <hardik.shah@ti.com>:
> [Shah, Hardik] Yes this is correct,
> I will apply this patch.  I already found it and fixed it in different way but
> any way I will apply your patch.
[Shah, Hardik] Further on this inki.  Solving this bug will give rise to couple of more bugs related to global_alpha and pixel formats. That also is fixed. You can refer http://arago-project.org/git/people/vaibhav/ti-psp-omap-video.git?p=people/vaibhav/ti-psp-omap-video.git;a=summary
> > >
> > >
> > >> -----Original Message-----
> > >> From: Tomi Valkeinen [mailto:tomi.valkeinen@nokia.com]
> > >> Sent: Wednesday, April 22, 2009 1:53 PM
> > >> To: Shah, Hardik
> > >> Cc: linux-media@vger.kernel.org; linux-omap@vger.kernel.org; Jadav,
> Brijesh
> > R;
> > >> Hiremath, Vaibhav
> > >> Subject: Re: [PATCH 3/3] OMAP2/3 V4L2 Display Driver
> > >>
> > >> Hi,
> > >>
> > >> On Wed, 2009-04-22 at 08:25 +0200, ext Hardik Shah wrote:
> > >> > This is the version 5th of the Driver.
> > >> >
> > >> > Following are the features supported.
> > >> > 1. Provides V4L2 user interface for the video pipelines of DSS
> > >> > 2. Basic streaming working on LCD and TV.
> > >> > 3. Support for various pixel formats like YUV, UYVY, RGB32, RGB24,
> RGB565
> > >> > 4. Supports Alpha blending.
> > >> > 5. Supports Color keying both source and destination.
> > >> > 6. Supports rotation with RGB565 and RGB32 pixels formats.
> > >> > 7. Supports cropping.
> > >> > 8. Supports Background color setting.
> > >> > 9. Works on latest DSS2 library from Tomi
> > >> > http://www.bat.org/~tomba/git/linux-omap-dss.git/
> > >> > 10. 1/4x scaling added.  Detail testing left
> > >> >
> > >> > TODOS
> > >> > 1. Ioctls needs to be added for color space conversion matrix
> > >> > coefficient programming.
> > >> > 2. To be tested on DVI resolutions.
> > >> >
> > >> > Comments fixed from community.
> > >> > 1. V4L2 Driver for OMAP3/3 DSS.
> > >> > 2.  Conversion of the custom ioctls to standard V4L2 ioctls like alpha
> > >> blending,
> > >> > color keying, rotation and back ground color setting
> > >> > 3.  Re-organised the code as per community comments.
> > >> > 4.  Added proper copyright year.
> > >> > 5.  Added module name in printk
> > >> > 6.  Kconfig option copy/paste error
> > >> > 7.  Module param desc addded.
> > >> > 8.  Query control implemented using standard query_fill
> > >> > 9.  Re-arranged if-else constructs.
> > >> > 10. Changed to use mutex instead of semaphore.
> > >> > 11. Removed dual usage of rotation angles.
> > >> > 12. Implemented function to convert the V4L2 angle to DSS angle.
> > >> > 13. Y-position was set half by video driver for TV output
> > >> > Now its done by DSS so removed that.
> > >> > 14. Minor cleanup
> > >> > 15. Added support to pass the page offset to application.
> > >> > 14. Minor cleanup
> > >> > 15. Added support to pass the page offset to application.
> > >> > 16. Renamed V4L2_CID_ROTATION to V4L2_CID_ROTATE
> > >> > 17. Major comment from Hans fixed.
> > >> > 18. Copy right year changed.
> > >> > 19. Added module name for each error/warning print message.
> > >> >
> > >> > Changes from Previous Version.
> > >> > 1. Supported YUV rotation.
> > >> > 2. Supported Flipping.
> > >> > 3. Rebased line with Tomi's latest DSS2 master branch with commit  id
> > >> > f575a02edf2218a18d6f2ced308b4f3e26b44ce2.
> > >> > 4. Kconfig option removed to select between the TV and LCD.
> > >> > Now supported dynamically by DSS2 library.
> > >> > 5. Kconfig option for the NTSC_M and PAL_BDGHI mode but not
> > >> > supported by DSS2.  so it will not work now.
> > >>
> > >> There is basic support for this. See the DSS doc:
> > >>
> > >> /sys/devices/platform/omapdss/display? directory:
> > >> ...
> > >> timings         Display timings
> > (pixclock,xres/hfp/hbp/hsw,yres/vfp/vbp/vsw)
> > >>                 When writing, two special timings are accepted for tv-
> out:
> > >>                 "pal" and "ntsc"
> > > [Shah, Hardik] I was not aware of it will remove the compile time option
> and
> > for now let the sysfs entry change the standard.  In future I will try to do
> > it with the S_STD and G_STD ioctls of the V4L2 framework.
> > >>
> > >>  Tomi
> > >>
> > >>
> > >
> > > --
> > > To unsubscribe from this list: send the line "unsubscribe linux-media" in
> > > the body of a message to majordomo@vger.kernel.org
> > > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> > >
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
  
Zhang, Xiaolin May 1, 2009, 3:01 p.m. UTC | #5
Yes, I am working on it. maybe it is caused from ISP big size issue.  I am trying to reduce the ISP driver code (around 800k)

Xiaolin

-----Original Message-----
From: Dongsoo, Nathaniel Kim [mailto:dongsoo.kim@gmail.com] 
Sent: Thursday, April 30, 2009 5:33 PM
To: Zhang, Xiaolin
Cc: linux-media@vger.kernel.org; Johnson, Charles F; Zhu, Daniel
Subject: Re: [PATCH 0/5] V4L2 patches for Intel Moorestown Camera Imaging Drivers

Hello Xiaolin,

I think the first patch is missing. Following your description, it may
be the "Intel Moorestown ISP driver.".
Can you re-post it please?
BTW, I didn't notice that Atom processor had a camera interface, and
even it supports dual camera as well. Can I find some datasheet or
user manual to take a look at how it works?
Cheers,

Nate

On Thu, Apr 30, 2009 at 5:18 PM, Zhang, Xiaolin <xiaolin.zhang@intel.com> wrote:
> Hi All,
>
> Here is the a set of V4L2 camera sensors and ISP drivers to support the Intel Moorestown camera imaging subsystem. The Camera Imaging interface in Moorestown is responsible for capturing both still and video frames. The CI handles demosaicing, color synthesis, filtering, image enhancement functions and JPEG encode. Intel Moorestown platform can support either a single camera or two cameras. A platform with two cameras will have on the same side as this display and the second on the opposite side the display. The camera on the display side will be used for video conferencing (with low resolution SoC cameras) and the other camera is used to still image capture or video recode (with high resolution RAW cameras).
>
> In this set of driver patches, I will submit the 5 patches to enable the ISP HW and 3 cameras module (two SoCs: 1.3MP - Omnivision 9665, 2MP - Omnivison 2650 and one RAW: 5MP - Omnivision 5630).
> 1. Intel Moorestown ISP driver.
> 2. Intel Moorestown camera sensor pseudo driver. This is to uniform the interfaces for ISP due to supporting dual cameras.
> 3. Intel Moorestown 2MP camera sensor driver.
> 4. Intel Moorestown 5MP camera sensor driver.
> 5. Intel Moorestown 1.3MP camera sensor driver.
>
> I will post the above 5 patches in near feature.
>
> Regards,
>
> Xiaolin
> Xiaolin.zhang@intel.com
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
  
Guennadi Liakhovetski May 1, 2009, 9:26 p.m. UTC | #6
On Thu, 30 Apr 2009, Zhang, Xiaolin wrote:

> Hi All,
> 
> Here is the a set of V4L2 camera sensors and ISP drivers to support the 
> Intel Moorestown camera imaging subsystem. The Camera Imaging interface 
> in Moorestown is responsible for capturing both still and video frames. 
> The CI handles demosaicing, color synthesis, filtering, image 
> enhancement functions and JPEG encode. Intel Moorestown platform can 
> support either a single camera or two cameras. A platform with two 
> cameras will have on the same side as this display and the second on the 
> opposite side the display. The camera on the display side will be used 
> for video conferencing (with low resolution SoC cameras) and the other 
> camera is used to still image capture or video recode (with high 
> resolution RAW cameras).
> 
> In this set of driver patches, I will submit the 5 patches to enable the 
> ISP HW and 3 cameras module (two SoCs: 1.3MP - Omnivision 9665, 2MP - 
> Omnivison 2650 and one RAW: 5MP - Omnivision 5630).
> 1. Intel Moorestown ISP driver.
> 2. Intel Moorestown camera sensor pseudo driver. This is to uniform the 
> interfaces for ISP due to supporting dual cameras.
> 3. Intel Moorestown 2MP camera sensor driver.
> 4. Intel Moorestown 5MP camera sensor driver.
> 5. Intel Moorestown 1.3MP camera sensor driver.
> 
> I will post the above 5 patches in near feature.

I think this is a perfect candidate for the use of the v4l2-(sub)dev API, 
and should be converted to use it, am I right?

Thanks
Guennadi
---
Guennadi Liakhovetski, Ph.D.
Freelance Open-Source Software Developer
http://www.open-technology.de/
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
  
Hans Verkuil May 2, 2009, 3:42 p.m. UTC | #7
On Friday 01 May 2009 23:26:02 Guennadi Liakhovetski wrote:
> On Thu, 30 Apr 2009, Zhang, Xiaolin wrote:
> > Hi All,
> >
> > Here is the a set of V4L2 camera sensors and ISP drivers to support the
> > Intel Moorestown camera imaging subsystem. The Camera Imaging interface
> > in Moorestown is responsible for capturing both still and video frames.
> > The CI handles demosaicing, color synthesis, filtering, image
> > enhancement functions and JPEG encode. Intel Moorestown platform can
> > support either a single camera or two cameras. A platform with two
> > cameras will have on the same side as this display and the second on
> > the opposite side the display. The camera on the display side will be
> > used for video conferencing (with low resolution SoC cameras) and the
> > other camera is used to still image capture or video recode (with high
> > resolution RAW cameras).
> >
> > In this set of driver patches, I will submit the 5 patches to enable
> > the ISP HW and 3 cameras module (two SoCs: 1.3MP - Omnivision 9665, 2MP
> > - Omnivison 2650 and one RAW: 5MP - Omnivision 5630).
> > 1. Intel Moorestown ISP driver.
> > 2. Intel Moorestown camera sensor pseudo driver. This is to uniform the
> > interfaces for ISP due to supporting dual cameras.
> > 3. Intel Moorestown 2MP camera sensor driver.
> > 4. Intel Moorestown 5MP camera sensor driver.
> > 5. Intel Moorestown 1.3MP camera sensor driver.
> >
> > I will post the above 5 patches in near feature.
>
> I think this is a perfect candidate for the use of the v4l2-(sub)dev API,
> and should be converted to use it, am I right?

Absolutely. The sensor drivers must use v4l2_subdev, otherwise they will not 
be reusable by other drivers.

There is a lot of work that needs to be done before these sensor drivers can 
be merged. These sensor drivers are tightly coupled to the platform driver, 
thus preventing any reuse of these i2c devices. That's bad and something 
that needs to be fixed first.

Xiaolin, please take a look at Documentation/video4linux/v4l2-framework.txt 
for information on the new v4l2 framework. All v4l2 i2c drivers should use 
v4l2_subdev to enable reuse of these i2c devices in other platform drivers 
and webcams.

Regards,

	Hans

>
> Thanks
> Guennadi
> ---
> Guennadi Liakhovetski, Ph.D.
> Freelance Open-Source Software Developer
> http://www.open-technology.de/
  
Zhang, Xiaolin May 4, 2009, 3:44 p.m. UTC | #8
Good comments. Only ISP driver is based on the V4L2 driver framework. The camera sensor used on the Moorestown platform is based on the I2C client driver. I will look at the Documentation/video4linux/v4l2-framework.txt and will consider your comment in our future plan. 

Welcome any more comments.

Thanks,
Xiaolin

-----Original Message-----
From: linux-media-owner@vger.kernel.org [mailto:linux-media-owner@vger.kernel.org] On Behalf Of Hans Verkuil
Sent: Saturday, May 02, 2009 11:43 PM
To: Guennadi Liakhovetski
Cc: Zhang, Xiaolin; linux-media@vger.kernel.org; Johnson, Charles F; Zhu, Daniel
Subject: Re: [PATCH 0/5] V4L2 patches for Intel Moorestown Camera Imaging Drivers

On Friday 01 May 2009 23:26:02 Guennadi Liakhovetski wrote:
> On Thu, 30 Apr 2009, Zhang, Xiaolin wrote:
> > Hi All,
> >
> > Here is the a set of V4L2 camera sensors and ISP drivers to support the
> > Intel Moorestown camera imaging subsystem. The Camera Imaging interface
> > in Moorestown is responsible for capturing both still and video frames.
> > The CI handles demosaicing, color synthesis, filtering, image
> > enhancement functions and JPEG encode. Intel Moorestown platform can
> > support either a single camera or two cameras. A platform with two
> > cameras will have on the same side as this display and the second on
> > the opposite side the display. The camera on the display side will be
> > used for video conferencing (with low resolution SoC cameras) and the
> > other camera is used to still image capture or video recode (with high
> > resolution RAW cameras).
> >
> > In this set of driver patches, I will submit the 5 patches to enable
> > the ISP HW and 3 cameras module (two SoCs: 1.3MP - Omnivision 9665, 2MP
> > - Omnivison 2650 and one RAW: 5MP - Omnivision 5630).
> > 1. Intel Moorestown ISP driver.
> > 2. Intel Moorestown camera sensor pseudo driver. This is to uniform the
> > interfaces for ISP due to supporting dual cameras.
> > 3. Intel Moorestown 2MP camera sensor driver.
> > 4. Intel Moorestown 5MP camera sensor driver.
> > 5. Intel Moorestown 1.3MP camera sensor driver.
> >
> > I will post the above 5 patches in near feature.
>
> I think this is a perfect candidate for the use of the v4l2-(sub)dev API,
> and should be converted to use it, am I right?

Absolutely. The sensor drivers must use v4l2_subdev, otherwise they will not 
be reusable by other drivers.

There is a lot of work that needs to be done before these sensor drivers can 
be merged. These sensor drivers are tightly coupled to the platform driver, 
thus preventing any reuse of these i2c devices. That's bad and something 
that needs to be fixed first.

Xiaolin, please take a look at Documentation/video4linux/v4l2-framework.txt 
for information on the new v4l2 framework. All v4l2 i2c drivers should use 
v4l2_subdev to enable reuse of these i2c devices in other platform drivers 
and webcams.

Regards,

	Hans

>
> Thanks
> Guennadi
> ---
> Guennadi Liakhovetski, Ph.D.
> Freelance Open-Source Software Developer
> http://www.open-technology.de/
  
Zhang, Xiaolin May 5, 2009, 3:17 a.m. UTC | #9
The camera interface is located on the Langwell, not on the Atom processor. 

BRs
Xiaolin

-----Original Message-----
From: Dongsoo, Nathaniel Kim [mailto:dongsoo.kim@gmail.com] 
Sent: Thursday, April 30, 2009 5:33 PM
To: Zhang, Xiaolin
Cc: linux-media@vger.kernel.org; Johnson, Charles F; Zhu, Daniel
Subject: Re: [PATCH 0/5] V4L2 patches for Intel Moorestown Camera Imaging Drivers

Hello Xiaolin,

I think the first patch is missing. Following your description, it may
be the "Intel Moorestown ISP driver.".
Can you re-post it please?
BTW, I didn't notice that Atom processor had a camera interface, and
even it supports dual camera as well. Can I find some datasheet or
user manual to take a look at how it works?
Cheers,

Nate

On Thu, Apr 30, 2009 at 5:18 PM, Zhang, Xiaolin <xiaolin.zhang@intel.com> wrote:
> Hi All,
>
> Here is the a set of V4L2 camera sensors and ISP drivers to support the Intel Moorestown camera imaging subsystem. The Camera Imaging interface in Moorestown is responsible for capturing both still and video frames. The CI handles demosaicing, color synthesis, filtering, image enhancement functions and JPEG encode. Intel Moorestown platform can support either a single camera or two cameras. A platform with two cameras will have on the same side as this display and the second on the opposite side the display. The camera on the display side will be used for video conferencing (with low resolution SoC cameras) and the other camera is used to still image capture or video recode (with high resolution RAW cameras).
>
> In this set of driver patches, I will submit the 5 patches to enable the ISP HW and 3 cameras module (two SoCs: 1.3MP - Omnivision 9665, 2MP - Omnivison 2650 and one RAW: 5MP - Omnivision 5630).
> 1. Intel Moorestown ISP driver.
> 2. Intel Moorestown camera sensor pseudo driver. This is to uniform the interfaces for ISP due to supporting dual cameras.
> 3. Intel Moorestown 2MP camera sensor driver.
> 4. Intel Moorestown 5MP camera sensor driver.
> 5. Intel Moorestown 1.3MP camera sensor driver.
>
> I will post the above 5 patches in near feature.
>
> Regards,
>
> Xiaolin
> Xiaolin.zhang@intel.com
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
  

Patch

diff --git a/drivers/media/video/omap/omap_vout.c
b/drivers/media/video/omap/omap_vout.c
index 9b4a0d7..051298a 100644
--- a/drivers/media/video/omap/omap_vout.c
+++ b/drivers/media/video/omap/omap_vout.c
@@ -2246,11 +2246,13 @@  free_buffers:
 /* Create video out devices */
 static int __init omap_vout_create_video_devices(struct platform_device *pdev)
 {
-	int r = 0, k;
+	int r = 0, k, vout_count;
 	struct omap_vout_device *vout;
 	struct video_device *vfd = NULL;
 	struct omap2video_device *vid_dev = platform_get_drvdata(pdev);

+	vout_count = 3 - pdev->num_resources;
+
 	for (k = 0; k < pdev->num_resources; k++) {

 		vout = kmalloc(sizeof(struct omap_vout_device), GFP_KERNEL);
@@ -2266,9 +2268,9 @@  static int __init
omap_vout_create_video_devices(struct platform_device *pdev)
 		vout->vid = k;
 		vid_dev->vouts[k] = vout;
 		vout->vid_info.vid_dev = vid_dev;
-		vout->vid_info.overlays[0] = vid_dev->overlays[k + 1];
+		vout->vid_info.overlays[0] = vid_dev->overlays[k + vout_count];
 		vout->vid_info.num_overlays = 1;
-		vout->vid_info.id = k + 1;
+		vout->vid_info.id = k + vout_count;
 		vid_dev->num_videos++;