hmm suddenly getting an EINVAL when doing a VIDIOC_QBUF with VIDEO_CAPTURE and USERPTR. is there a way to narrow down exactly which field is the problem?
hi, we are close to finish the TODO list for the destaging of the rkisp1 driver. We currently don't have an open source userspace that implements the params-stats control loop. Is there a strickt rule that for drivers to be accepted in the media subsystems should also be an open source userspace ?
dafna2: no. There is a strict rule that the data structures are documented, but there doesn't have to be an open source userspace.
(it's nice to have, of course, but it is not a requirement)
we had a discussion about it in collabora together with @ezequielg  , he said it might be a requirement since without an open source userspace the driver can't be tested
That's never been a requirement. Of course, the assumption is that it has been tested by the developer.
One option is to extend v4l2-ctl to understand this (i.e. to at least be able to parse and show this information).
If that is something you want to explore, then let me know.
you mean an option to parse metadata information?
yes
does rkisp1 use a metadata video node to pass that information?
yes
two nodes
v4l2-ctl-meta.cpp supports UVC and vivid metadata parsing, so it is easy to add others there.
one capture node that sends statistics and one output node that receive configurations
dafna2, Can the param-stats control loop not be handled in libcamera ?
the loop is not really implemented in libcamera
there is a code that reads that statistics and controls the sensor thourgh the ctrl
but the params buffer is not read/written at all
dafna2, Sure, but it's not in v4l2-ctl either ;-) I was more suggesting that wouldn't it make sense to do that developement /in libcamera/ as opposed to v4l2-ctl ... I thought this is kind of the point of libcamera ;-)
yes, it makes sense
the question is if doing this is a requierement to destage the driver
(i'm not saying the work needs to be done in libcamera to get the drvier out of staging by the way)
Just that libcamera seems to be a more obvious place to develop a control loop for an ISP rather than v4l2-ctl ... given that's what the goals of libcamera are ;-)
yes, I agree, this will require some work
hans suggested only to parse the metadata in v4l2-ctl not to implement the control loop
right.
That's enough to at least do a quick test for validity.
Just parsing the data is indeed simpler.
hverkuil: dafna2: most of the driver functionality can be tested without the metadata, but
There is quite a bit that can break around the metadata itself
Perhaps some sample test could be done with hardcoded metadata and v4l2-ctl/yavta/gstreamer?
s/sample test/simple test/
what do you mean by "break around" ?
break, around :)
I mean, things around the metadata handling can break
and they can't be tested without metadata
you mean, we can have hardcoded values to the params?
dafna2: you can set params in v4l2-ctl, see v4l2-ctl-meta.cpp
Parsing the statistic buffers metadata will not provide a way to test the parameter buffers right? While extending the control loop in libcamera would prove the function of both.
Yeah, parsing wouldn't. Extending the control loop in libcamera alone also wouldn't. One would need some tests to verify the behavior.
A simple bash invitation of v4l2-ctl with the capture i/f in the test pattern mode and hardcoded metadata blob would IMHO be much easier
Invocation*
Other than that, 3a control loop for rkisp1 in libcamera is already on the way
So that side of the problem should be already settled with that
On the other hand, we still need some kind of compliance test on the same level as v4l2-compliance
To only test the kernel code itself
Without making the test a full integration test
how do I prepare the blob?
is there a place where I can take the values from?
For example dumping from a working camera pipeline on chrome OS
But it doesn't really matter that much, it's more whether the applied parameters give the expected results
There are fields which are documented reasonably well, like color gains
I don't think we can test whether the individual parameters really work, as there's too many of them
But we can test if the parameters work at all, are applied to the right buffer, etc.
hverkuil: I fully agree with Kieran (not surprisingly ;-)) that libcamera should be were the control loop lives
there's no point in trying to develop a cheap version with scripts
if we want to validate APIs, we want a real userspace implementation
not just a test
not having that requirement in the past, while understandable as there was no userspace stack, has lead us to APIs that are partly underspecified, partly incomplete, and partly incorrect
(also partly correct of course :-))
it's one of the things DRM does right. if you want to upstream an API extension, even as simple as a standard control, you need to supply an implementation in X.org, weston, the android DRM hw composer, or another real project
pinchartl: I have no objection whatsoever to add support for it to libcamera.
I hate it, it raises the bar, but it's the only way to get things designed correctly
plus there's already support in libcamera for the rkisp1 :-)
so it would be simpler I believe to go that route
and develop a test case based on it
as tfiga pointed out, we can do something simple
such as controlling the colour gains manually
setting it very very red
and checking that the capture frame is indeed red
that would also allow us to add more similar tests in the future
dafna2: does that make sense to you ?
yes, that could be helpful,
but it still not a full implementation of the control loop,
but I guess just to make sure that the params indeed does what it should , it is a good start
we have a control loop skeleton for the rkisp1 in libcamera. we know it has to be rewritten, and I don't think finishing it is necessarily a prerequisite to destage the driver, but I think that whatever tests we consider as required for destaging should be implemented through libcamera. that's the only way to ensure that the APIs meet the needs
nm got it. was specifyin a hardcoded size instead of using fmt.pix.sizeimage