Hi Mauro, On Sat, Mar 5, 2011 at 12:16 AM, Mauro Carvalho Chehab <mchehab@xxxxxxxxxx> wrote: > Hi Laurent, > > Em 17-02-2011 13:06, Laurent Pinchart escreveu: >> Hi Mauro, >> >> The following changes since commit 85e2efbb1db9a18d218006706d6e4fbeb0216213: >> >>  Linux 2.6.38-rc5 (2011-02-15 19:23:45 -0800) >> >> are available in the git repository at: >>  git://linuxtv.org/pinchartl/media.git media-0005-omap3isp > > I've added the patches that looked ok on my eyes at: > > http://git.linuxtv.org/mchehab/experimental.git?a=shortlog;h=refs/heads/media_controller > > There are just a few small adjustments on a few of them, as I've commented. > I prefer if you do them on separate patches, to save my work of not needing > to review the entire series again. > > The ones still pending on my quilt tree are: > > 0030-v4l-subdev-Generic-ioctl-support.patch > 0040-omap3isp-OMAP3-ISP-core.patch > 0041-omap3isp-Video-devices-and-buffers-queue.patch > 0042-omap3isp-CCP2-CSI2-receivers.patch > 0043-omap3isp-CCDC-preview-engine-and-resizer.patch > 0044-omap3isp-Statistics.patch > 0045-omap3isp-Kconfig-and-Makefile.patch > 0046-omap3isp-Add-set-performance-callback-in-isp-platfor.patch > > with the following diffstat: > > ÂDocumentation/video4linux/v4l2-framework.txt    |  Â5 + > ÂMAINTAINERS                    Â|  Â6 + > Âdrivers/media/video/Kconfig            Â|  13 + > Âdrivers/media/video/Makefile            |  Â2 + > Âdrivers/media/video/omap3-isp/Makefile       |  13 + > Âdrivers/media/video/omap3-isp/cfa_coef_table.h   |  61 + > Âdrivers/media/video/omap3-isp/gamma_table.h    Â|  90 + > Âdrivers/media/video/omap3-isp/isp.c        Â| 2220 +++++++++++++++++++ > Âdrivers/media/video/omap3-isp/isp.h        Â| Â428 ++++ > Âdrivers/media/video/omap3-isp/ispccdc.c      Â| 2268 ++++++++++++++++++++ > Âdrivers/media/video/omap3-isp/ispccdc.h      Â| Â219 ++ > Âdrivers/media/video/omap3-isp/ispccp2.c      Â| 1173 ++++++++++ > Âdrivers/media/video/omap3-isp/ispccp2.h      Â|  98 + > Âdrivers/media/video/omap3-isp/ispcsi2.c      Â| 1317 ++++++++++++ > Âdrivers/media/video/omap3-isp/ispcsi2.h      Â| Â166 ++ > Âdrivers/media/video/omap3-isp/ispcsiphy.c     Â| Â247 +++ > Âdrivers/media/video/omap3-isp/ispcsiphy.h     Â|  74 + > Âdrivers/media/video/omap3-isp/isph3a.h       | Â117 + > Âdrivers/media/video/omap3-isp/isph3a_aewb.c    Â| Â374 ++++ > Âdrivers/media/video/omap3-isp/isph3a_af.c     Â| Â429 ++++ > Âdrivers/media/video/omap3-isp/isphist.c      Â| Â520 +++++ > Âdrivers/media/video/omap3-isp/isphist.h      Â|  40 + > Âdrivers/media/video/omap3-isp/isppreview.c     | 2113 ++++++++++++++++++ > Âdrivers/media/video/omap3-isp/isppreview.h     | Â214 ++ > Âdrivers/media/video/omap3-isp/ispqueue.c      | 1153 ++++++++++ > Âdrivers/media/video/omap3-isp/ispqueue.h      | Â187 ++ > Âdrivers/media/video/omap3-isp/ispreg.h       | 1589 ++++++++++++++ > Âdrivers/media/video/omap3-isp/ispresizer.c     | 1693 +++++++++++++++ > Âdrivers/media/video/omap3-isp/ispresizer.h     | Â147 ++ > Âdrivers/media/video/omap3-isp/ispstat.c      Â| 1092 ++++++++++ > Âdrivers/media/video/omap3-isp/ispstat.h      Â| Â169 ++ > Âdrivers/media/video/omap3-isp/ispvideo.c      | 1255 +++++++++++ > Âdrivers/media/video/omap3-isp/ispvideo.h      | Â202 ++ > Âdrivers/media/video/omap3-isp/luma_enhance_table.h |  42 + > Âdrivers/media/video/omap3-isp/noise_filter_table.h |  30 + > Âdrivers/media/video/v4l2-subdev.c         Â|  Â2 +- > Âdrivers/media/video/videobuf-dma-contig.c     Â|  Â2 +- > Âinclude/linux/Kbuild                |  Â1 + > Â38 files changed, 19769 insertions(+), 2 deletions(-) > > I used quilt for all patches, except for the one patch with some gifs, where I did a > git cherry-pick. So, the imported patches should be ok. Of course, it doesn't hurt > do double check. > > The main issue with the omap3isp is due to the presence of private ioctl's that > I don't have a clear idea about what they are really doing. > > I couldn't see any documentation about them on a very quick look. While I suspect > that they are used only for 3A, I have no means of being sure about that. > > Also, as I've said several times, while I don't like, I have nothing against > having some ioctls that would be used by a vendor to implement their own 3A software > algorithms that he may need to hide for some reason or have any patents applied to > the algorithm, but only if: >    Â1) such algorithms are implemented on userspace; Yes. >    Â2) the userspace API used by them is fully documented, in order > to allow that someone else with enough motivation and spare time may > want to implement his own algorithm (including an open-source one); The API is pretty close to what is found on public OMAP3 TRM. I'd say it's almost to fill registers through a userspace API. >    Â3) there are no patents denying or charging for the usage and/or > distribution/redistribution of the Kernel with the provided kernel driver; I'd say there's no patent / charge for usage or redistribution. But that's lawyer stuff. :/ >    Â4) if the device works with a reasonable quality without them > (by reasonable I mean like a cheap webcam, where libv4l could use his > set of 3A algorithms to provide a good quality). It depends on the sensor as well, but in general should work with a reasonable quality without using statistic modules. > > Assuming that all those private ioctl's are really for 3A, it is ok for me > to accept such ioctls after being sure that the above applies. I'm not sure > how to check (4), as, while I have 2 omap boards here (a Beagleboard and a > gumstix), none of them have any sensor. The private ioctl are used mostly on statistic modules (3A and Histogram). But it's used for CCDC and Preview modules configuration too. Regards, David > > > Cheers, > Mauro. > > > -- > To unsubscribe from this list: send the line "unsubscribe linux-media" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > 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@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html