hi all, i am having an issue using v4l2 after upgrading to 4.16. i am trying to use v4l2loopback which creates a fake video device, and then i am trying to use x11grab with ffmpeg to send to it. in 4.15, it works fine. in 4.16, the VIDIOC_G_FMT IOCTL is returning invalid argument in ffmpeg. were there any changes here in 4.16?
i dont know if ffmpeg is now wrong or v4l2loopback
sailus: pong
mripard: Bonjour! :-)
I was looking at the CSI-2 TX driver again and I have trouble understanding the context a bit.
What kind of device is it; where would you use that?
Some of the information is obtained from DT, and I was wondering whether what's there now is complete.
sailus: so far, this is an FPGA-only IP, meant to be synthesized in SoCs
that's also why the support is partial, some features (like the PHY support) are not available in the FPGAs or simulators yet
Ok. So you'd have DMA and PHY separate from this one?
I presume the CSI-2 transmitter would be directed out of the SoC, not the other way around, right?
sailus: it will never perform DMA, it's just a bridge between an RGB-like interface (with additional signals) and a CSI-2 bus
and yes, I guess the most common use-case would be to have the RGB interface internal to the SoCs, and the CSI-2 link coming out of it
We don't have generic PHY API for camera PHYs yet.
It might be nice to have one one day...
the PHY should be inside the SoC as well, but yeah that would be nice
I wonder what's the use case for CSI-2 TX in an SoC.
And where should the endpoint parsing take place.
I suppose that information would be required in both the transmitter and the PHY configuration.
that's also why I left it out of the TX for now
since the way it would interact with the rest of the system in an actual SoC is not really clear to me at the moment
the setup I have in simulation is basically an IP to capture the frames <- CSI2-RX <- CSI2-TX <- Pattern generator
mripard: apart from IP core testing in an FPGA, do you see any use case for *not* having the PHY in the SoC ?
I'm wondering how to meaningfully support such devices.
We only have had capture pipelines in the past, but in this case you'd have the capture portion taking place somewhere else.
Would that somewhere else be part of the same MC pipeline or not?
I guess how to manage such a pipeline would depend on what kind of systems this hardware block would be a part of.
pinchartl: I heard about three cases: without PHY (but afaik it's only going to be in our simulation / FPGA), with the PHY part of the CSI2-TX controller, or with a D-PHY provided by the rest of the SoC
pinchartl: so I'd say no
sailus: and yeah, I couldn't really make up my mind (or gather more informations on this), so I just assumed this was a regular subdev for now, and we will add the relevant part where we'll have a clear use case
we'll have to do more anyway, even just to support the multiplexed links
and for example add a notifier to retrieve the upstream's link and associated VC and DT
hverkuil: got the error with https://www.mail-archive.com/linux-media@vger.kernel.org/msg128701.html
fix is: https://patchwork.linuxtv.org/patch/48408/
it is actually a bug that exists since ever... the bitmap array there is too short!
VFL_TYPE_foo starts with 0, and VFL_TYPE_MAX is equal to the last one
so, the array should have VFL_TYPE_MAX + 1 elements
to be able to store up to VFL_TYPE_MAX.
basically, it doesn't have space for VFL_TYPE_TOUCH
Actually, you introduced this bug in commit 4839c58f034ae41e2dfdd097240a69622cab4c73 :-)
oh
yeah, you're right
See my reply I just posted, it has some suggestions for improving this.
that's actually a good news, as it doesn't need to go all the way down to -stable Kernels
version 2 sent
I'll add a:
Fixes: 4839c58f034a ("media: v4l2-dev: convert VFL_TYPE_* into an enum")
when applying it upstream
(should have added it before sending the patch)
$ git describe 4839c58f034a
media/v4.15-2-222-g4839c58f034a
ok, only Kernel 4.16 was affected
OK, that's not too bad.
yep
I was afraid that this had to go to all -stable Kernels
with regards to pr_err(), I prefer to do such changes on a separate patch...
there are several printk(KERNL_ERR there already
better to solve them all at once
I've added a topic to https://www.linuxtv.org/wiki/index.php/Media_Open_Source_Projects:_Looking_for_Volunteers to add v4l-touch emulation to vivid.
yeah, that would be great
printk patch sent
that doesn't need to be backported
I'll add this patch to the patchset to be sent upstream next week
(the one with the fixes, not the one with the printk changes :-) )
ack
hverkuil: I just posted an RFC on the mediatext test program.
The last patch as two vim2m tests (the subject says vivid, I'll fix that).
I'd think this would be very practical for testing different kind of use cases and functionality, not that much torturing the API itself.
hi, I'm adding S_SELECTION support to an existing driver, but I'm confused
the driver can currently output:
- 2160p, native resolution
- 1080p, with 2x2 downsampling
- 720p with some downsampling, but I don't dare about this one
the sensor can also send a sub-window (aka cropping), but it cannot rescale except for the couple mentioned subsampling ratios
thus I'd like to add this mode:
- 1080p output, native resolution, with cropping (pretty much like a 2x "digital zoom")
question: which APIs will my user be supposed to use?
apparently I should set 1080p both to set_fmt and set_selection; how to I tell it it should crop (and not downsample) from 2160p?
hverkuil: The mediatext vim2m tests pass with your v10, both with and without requests.
I'm kinda confused, is it a driver or library, can you use webcam without v4l2?
How do you convert yuyv to rgb
I think there is an convertToRGB function
You don't need to call a convert function, you can just request your fav format, and v4l2 will do a conversion for you seemless as though your camera infact supports the format.
My camera, when I do v4l2-ctl --all, I see it support yuyv, but when I change the format in grabber.c example, from rgb24 to yuyv, it doesn't work
I think v4l2 is too technical for me. I need a library built on top which is more user friendly. Or an text book that teaches you how to use it in laymen terms.