public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
From: Sakari Ailus <sakari.ailus@maxwell.research.nokia.com>
To: Hans Verkuil <hverkuil@xs4all.nl>
Cc: "Aguirre Rodriguez, Sergio Alberto" <saaguirre@ti.com>,
	"DongSoo(Nathaniel) Kim" <dongsoo.kim@gmail.com>,
	"Hiremath, Vaibhav" <hvaibhav@ti.com>,
	"Toivonen Tuukka.O (Nokia-D/Oulu)" <tuukka.o.toivonen@nokia.com>,
	"linux-omap@vger.kernel.org" <linux-omap@vger.kernel.org>,
	"Nagalla, Hari" <hnagalla@ti.com>,
	"linux-media@vger.kernel.org" <linux-media@vger.kernel.org>
Subject: Re: [REVIEW PATCH 11/14] OMAP34XXCAM: Add driver
Date: Tue, 10 Mar 2009 14:14:52 +0200	[thread overview]
Message-ID: <49B659BC.7090409@maxwell.research.nokia.com> (raw)
In-Reply-To: <200903052224.03015.hverkuil@xs4all.nl>

Hans Verkuil wrote:
>> Sergio has posted earlier a patchset containing a driver for using the
>> ISP to process images from memory to memory. The ISP driver is used
>> roughly the same way as with the omap34xxcam and real sensors. The
>> interface towards the userspace offered by the driver, however, is
>> different, you probably saw it (preview and resizer wrappers).
>>
>> My opinion has been that the memory-to-memory operation of the ISP
>> should also offer V4L2 interface. V4L2, however, doesn't support such
>> devices at the moment. The only differences that I can see is that
>>
>> 1. the input is a video buffer instead of sensor and
>>
>> 2. the source format needs to be specified somehow since the ISP can
>> also do format conversion. So it's output and input at the same time.
>>
>> But if we had one video device per ISP, then memory-to-memory operation
>> would be just one... input or output or what? :)
>>
>> Earlier we were thinking of creating one device node for it.
> 
> This sounds like a codec interface as 'described' here:
> 
> http://www.xs4all.nl/~hverkuil/spec/v4l2.html#CODEC
> 
> It would be a first for V4L2 to have a driver that can do this, but I agree 
> that that would be a single device that has both 'output' and 'capture'.

Ok. Although this work most probably will be left for future at this point.

>> Currently you can have just one device node using the ISP open.
>> omap34xxcam_open() calls isp_get() which fails if the ISP use count was
>> non-zero (means one).
>>
>> Or did I misunderstood something?
> 
> Oh dear. Please don't use 'use counts'. It is perfectly acceptable and 
> desirable to have multiple opens on the same video node. Only one file 

> Use counts are really bad and totally unnecessary. Only if another file 
> handle is in streaming mode (and when using VIDIOC_S_PRIORITY) does it make 
> sense to return -EBUSY for certain ioctls or read/write operations. 
> Otherwise you shouldn't limit the user from opening the same device node as 
> many times as he wants and use that to query the video device.

?

Having a use count doesn't prevent multiple file handles nor otherwise 
artificially limit functionality. We need to be able to shut down the 
slaves when they are no longer needed. IMO having an use count to do 
this is fine (unless otherwise proven).

Also the camera driver does try_module_get() to the slaves when it's 
opened by the first user. module_put() is called on those when the last 
user goes away.

We'd also like to get rid of the current way of directly telling the 
slaves what their power state should be. Rather we'd like to tell the 
slaves what's expected from them. This could translate to 
open/release/streamon/streamoff commands. To be able to do this, the use 
count is required --- unless this task is given to the slaves 
(v4l2_subdevs).

> BTW, I looked at omap24xxcam_open(): data like fh->pix does *not* belong to 
> the filehandle struct, it should be part of the top-level data structure. 

That's fixed in the omap34xxcam.c. :)

> You want to be able to do simple things like querying a video node for the 
> currently selected format. You can't do that if the format is stored in the 
> filehandle! E.g.: you are streaming and you want to run 
> v4l2-ctl --get-fmt-video to check what video format is being used. Things 
> like this must be supported by a well-written v4l2 driver. Again, sadly 
> quite a few v4l2 drivers do this wrong as well :-(
> 
> I also see that cam->users is not decreased by one if 
> omap24xxcam_sensor_enable() fails.
> 
> Note that I'm looking at the code in the v4l-dvb repository, the linux-omap 
> git tree might have fixed that already.

I'm afraid it's still there. Will fix that.

Thanks.

-- 
Sakari Ailus
sakari.ailus@maxwell.research.nokia.com


  reply	other threads:[~2009-03-10 12:15 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <5e9665e10903021848u328e0cd4m5186344be15b817@mail.gmail.com>
     [not found] ` <19F8576C6E063C45BE387C64729E73940427BC9B86@dbde02.ent.ti.com>
2009-03-03  5:13   ` [REVIEW PATCH 11/14] OMAP34XXCAM: Add driver DongSoo(Nathaniel) Kim
2009-03-03  7:36     ` Hans Verkuil
2009-03-04  0:42       ` DongSoo(Nathaniel) Kim
2009-03-04  7:39         ` Hans Verkuil
2009-03-04  7:49           ` Tuukka.O Toivonen
2009-03-04 19:22           ` Sakari Ailus
2009-03-04 21:05             ` Hans Verkuil
2009-03-04 21:46               ` Aguirre Rodriguez, Sergio Alberto
2009-03-04 22:44                 ` Hans Verkuil
2009-03-04 23:30                   ` Aguirre Rodriguez, Sergio Alberto
2009-03-05  7:39                     ` Hans Verkuil
2009-03-05 20:11                   ` Sakari Ailus
2009-03-05 21:24                     ` Hans Verkuil
2009-03-10 12:14                       ` Sakari Ailus [this message]
2009-03-04 23:42                 ` Trent Piepho
2009-03-05  2:25                   ` hermann pitton
2009-03-03  7:38     ` Sakari Ailus
2009-03-10 13:34 Hans Verkuil
  -- strict thread matches above, loose matches on Subject: below --
2009-03-04  8:12 Hans Verkuil
     [not found] <Acl1IyQQvIDQejCAQ5O/QnkHIBmt3w==>
2009-01-13  2:03 ` Aguirre Rodriguez, Sergio Alberto
2009-01-13  7:24   ` Hans Verkuil
2009-02-06  2:26   ` DongSoo Kim
2009-02-11  4:00   ` DongSoo Kim
2009-02-12  7:09     ` Sakari Ailus
2009-02-12  7:52       ` DongSoo Kim
2009-02-13  9:31         ` Arun KS
2009-02-13 10:04           ` DongSoo(Nathaniel) Kim
2009-02-13 10:02         ` Sakari Ailus
2009-02-13 10:11           ` DongSoo(Nathaniel) Kim
     [not found] <Aclb0Ghhhph2tRyARSuubB27tGfovg==>
2008-12-11 20:38 ` Aguirre Rodriguez, Sergio Alberto
2009-02-23  8:26   ` DongSoo(Nathaniel) Kim

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=49B659BC.7090409@maxwell.research.nokia.com \
    --to=sakari.ailus@maxwell.research.nokia.com \
    --cc=dongsoo.kim@gmail.com \
    --cc=hnagalla@ti.com \
    --cc=hvaibhav@ti.com \
    --cc=hverkuil@xs4all.nl \
    --cc=linux-media@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=saaguirre@ti.com \
    --cc=tuukka.o.toivonen@nokia.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox