* mt9t031 driver support on OMAP3 system @ 2012-09-22 17:42 P Jackson 2012-09-22 22:04 ` Guennadi Liakhovetski 0 siblings, 1 reply; 4+ messages in thread From: P Jackson @ 2012-09-22 17:42 UTC (permalink / raw) To: linux-media@vger.kernel.org I'm trying to incorporate an MT9T031-based sensor into a commercial small form-factor OMAP3 DM3730-based system which is supplied with sources for a 2.6.37 kernel and is somewhat out-dated.The application I'm working on requires a single image to be acquired from the sensor every once in a while which is then processed off-line by another algorithm on the OMAP3 I'd appreciate any advice from the list as to what the most suitable up to-date compatible kernel I should use would be and what other work I need to do in order to get things sorted. Thanks, Pete ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: mt9t031 driver support on OMAP3 system 2012-09-22 17:42 mt9t031 driver support on OMAP3 system P Jackson @ 2012-09-22 22:04 ` Guennadi Liakhovetski 2012-09-24 12:24 ` Laurent Pinchart 0 siblings, 1 reply; 4+ messages in thread From: Guennadi Liakhovetski @ 2012-09-22 22:04 UTC (permalink / raw) To: P Jackson; +Cc: linux-media@vger.kernel.org, Laurent Pinchart Hi Pete On Sat, 22 Sep 2012, P Jackson wrote: > I'm trying to incorporate an MT9T031-based sensor into a commercial > small form-factor OMAP3 DM3730-based system which is supplied with > sources for a 2.6.37 kernel and is somewhat out-dated.The application > I'm working on requires a single image to be acquired from the sensor > every once in a while which is then processed off-line by another > algorithm on the OMAP3 > > I'd appreciate any advice from the list as to what the most suitable up > to-date compatible kernel I should use would be and what other work I > need to do in order to get things sorted. I would certainly advise to use a current kernel (e.g., 3.5). As for "how," I know, that Laurent has worked on a similar tasks, you can find his posts in mailing list archives, or maybe he'll be able to advise you more specifically. > Thanks, Pete Thanks Guennadi --- Guennadi Liakhovetski, Ph.D. Freelance Open-Source Software Developer http://www.open-technology.de/ ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: mt9t031 driver support on OMAP3 system 2012-09-22 22:04 ` Guennadi Liakhovetski @ 2012-09-24 12:24 ` Laurent Pinchart 2012-09-24 15:36 ` John Weber 0 siblings, 1 reply; 4+ messages in thread From: Laurent Pinchart @ 2012-09-24 12:24 UTC (permalink / raw) To: Guennadi Liakhovetski; +Cc: P Jackson, linux-media@vger.kernel.org Hi Pete, On Sunday 23 September 2012 00:04:20 Guennadi Liakhovetski wrote: > On Sat, 22 Sep 2012, P Jackson wrote: > > I'm trying to incorporate an MT9T031-based sensor into a commercial > > small form-factor OMAP3 DM3730-based system which is supplied with > > sources for a 2.6.37 kernel and is somewhat out-dated.The application > > I'm working on requires a single image to be acquired from the sensor > > every once in a while which is then processed off-line by another > > algorithm on the OMAP3 > > > > I'd appreciate any advice from the list as to what the most suitable up > > to-date compatible kernel I should use would be and what other work I > > need to do in order to get things sorted. > > I would certainly advise to use a current kernel (e.g., 3.5). As for > "how," I know, that Laurent has worked on a similar tasks, you can find > his posts in mailing list archives, or maybe he'll be able to advise you > more specifically. You can have a look at http://git.linuxtv.org/pinchartl/media.git/shortlog/refs/heads/omap3isp- sensors-board to see how I've modified the ov772x driver to make it usable with the OMAP3 ISP. The patches are not upstreamable as such, I still need to work on them. I've explained the issues in detail on the mailing list. -- Regards, Laurent Pinchart ^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: mt9t031 driver support on OMAP3 system 2012-09-24 12:24 ` Laurent Pinchart @ 2012-09-24 15:36 ` John Weber 0 siblings, 0 replies; 4+ messages in thread From: John Weber @ 2012-09-24 15:36 UTC (permalink / raw) To: 'P Jackson' Cc: 'Guennadi Liakhovetski', 'Laurent Pinchart', linux-media Hi Pete, The next issue to solve is auto-exposure/white balance (AEWB). For this, Laurent has put together a nice example application in a project called omap3-isp-live [1]. This project builds two programs, 'live' and 'snapshot'. For my purposes, I want to have live streaming video. 'live' makes use of a local display and was not able to get this running using an HDMI display (on Beagleboard-xM). I modified the program to write the buffer data to stdout in the same way as yavta does, and use netcat to pipe the live data over a network socket to mplayer. This provides the video live using a network stream. This application wants allocate display buffers that are larger than coded into the kernel, so I had to modify the kernel to increase the buffer size. I'm still working on this and things are in a bit of disarray. I don't have suitable patches just yet, otherwise I would share them. [1] http://git.ideasonboard.org/omap3-isp-live.git > -----Original Message----- > From: linux-media-owner@vger.kernel.org [mailto:linux-media- > owner@vger.kernel.org] On Behalf Of Laurent Pinchart > Sent: Monday, September 24, 2012 7:24 AM > To: Guennadi Liakhovetski > Cc: P Jackson; linux-media@vger.kernel.org > Subject: Re: mt9t031 driver support on OMAP3 system > > Hi Pete, > > On Sunday 23 September 2012 00:04:20 Guennadi Liakhovetski wrote: > > On Sat, 22 Sep 2012, P Jackson wrote: > > > I'm trying to incorporate an MT9T031-based sensor into a commercial > > > small form-factor OMAP3 DM3730-based system which is supplied with > > > sources for a 2.6.37 kernel and is somewhat out-dated.The > > > application I'm working on requires a single image to be acquired > > > from the sensor every once in a while which is then processed > > > off-line by another algorithm on the OMAP3 > > > > > > I'd appreciate any advice from the list as to what the most suitable > > > up to-date compatible kernel I should use would be and what other > > > work I need to do in order to get things sorted. > > > > I would certainly advise to use a current kernel (e.g., 3.5). As for > > "how," I know, that Laurent has worked on a similar tasks, you can > > find his posts in mailing list archives, or maybe he'll be able to > > advise you more specifically. > > You can have a look at > http://git.linuxtv.org/pinchartl/media.git/shortlog/refs/heads/omap3isp- > sensors-board to see how I've modified the ov772x driver to make it > usable with the OMAP3 ISP. The patches are not upstreamable as such, I > still need to work on them. I've explained the issues in detail on the > mailing list. > > -- > Regards, > > Laurent Pinchart > > -- > 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 ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-09-24 15:36 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-09-22 17:42 mt9t031 driver support on OMAP3 system P Jackson 2012-09-22 22:04 ` Guennadi Liakhovetski 2012-09-24 12:24 ` Laurent Pinchart 2012-09-24 15:36 ` John Weber
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox