[05:28] <bingbu> Hi, all, who can help me how to run v4l2-compliance test to make sure my new camera sensor driver is good enough? thanks
[05:57] <tfiga> Hi bingbu, I think hverkuil_ or sailus could be able to help you, when they wake up :)
[07:05] <sailus> bingbu: I guess this is relatively new feature in v4l2-compliance.
[07:06] <sailus> Have you tried running it with just the -u option, to pass the sub-device node?
[07:45] <hverkuil_> bingbu: -u /dev/v4l-subdevX tests a subdev. You can also use -m /dev/mediaX and v4l2-compliance will test the media device and all video and subdevices referenced by the media topology
[07:50] *** WeaselSoup has left "WeeChat 2.1"
[08:25] <bingbu> sailus, hverkuil_ , thanks
[08:25] <bingbu> tfiga, thank you, too. :)
[09:28] <narmstrong> Hi all, I'm really new to v4l2 and I need to bringup an iMX6q based board with two OV5640 sensors (one MIPI and one DVP), and I'm stuck trying to debug capture, is there some simple steps to find out why I always have -32 when I try to capture using gst ?
[09:35] <pinchartl> narmstrong: I'd first try capturing with a lower-level V4L2 tool to rule out issues specific to gstreamer
[09:35] <pinchartl> yavta or v4l2-ctl are two good candidates
[09:36] <pinchartl> then, -EPIPE probably means you haven't configured the pipeline correctly
[09:36] <pinchartl> (or not at all)
[09:36] <pinchartl> check the pipeline configuration with media-ctl -p
[09:38] <narmstrong> pinchartl: ok thanks, I'll check all that
[09:38] <narmstrong> pinchartl: do I need to setup the pipeline manually ? I thought it would use the port/endpoint configuration from DT, no ?
[09:39] <pinchartl> you need to configure formats on the pipeline
[09:39] <pinchartl> (assuming the driver you use is MC-based)
[09:40] <narmstrong> I use vanilla 4.14 with ov5640 backports
[09:47] <javier__> narmstrong: the DT port/endpoint conf usually just is used to register the media entities, but still you need to setup the pipeline to choose the source and sink pads to use
[09:47] <javier__> so besides formats as pinchartl said, you need to setup the links and activate them, i.e: media-ctl -l '"foo":0->"bar":0[1], "bar":1->"baz":0[1]
[09:48] <narmstrong> Ok
[09:54] <javier__> narmstrong: you can check with media-ctl -p the state of the media graph
[09:54] <javier__>  and check if there's a link from your sensor source pad all the way to the sink pad of the media entity associated with the v4l2 dev node you are using for capture
[09:54] <javier__> same for the configured formats
[12:13] <pinchartl> mchehab: looks like it was worth it pursuing the smatch issue in the vsp1 driver, Dan has written a patch for smatch :-)
[12:29] <mchehab> pinchartl: great!
[12:29] <mchehab> yeah, if this can be fixed there, that's the best solution
[12:32] <mchehab> let's wait for his patch and see what it will do
[12:33] <pinchartl> it will still likely require a driver change, but hopefully a nicer one this time
[12:34] <mchehab> let's see
[12:43] <sailus> mchehab: Have you seen my e-mail on two pull requests I'd like to end up to v4.18?
[12:43] <sailus> I hate to pester you with this but both have been in "new" state since early last week. :-)
[12:46] <mchehab> sailus: as I explained last week, I'm handling the pending pull requests today
[12:47] <mchehab> last week was impossible... had to disassemble all my computers
[12:47] <mchehab> to install some new furniture here
[12:47] <mchehab> and re-install
[12:47] <mchehab> (finished doing it only at weekend)
[12:47] <mchehab> I also had a business trip
[12:49] <sailus> Oh, now that I think about it, you indeed mentioned that.
[12:49] <sailus> Sorry for the noise then.
[12:51] <mchehab> np
[14:04] <narmstrong> pinchartl, javier__: I feel stupid, but I don't have /dev/media0 but I can see everything is probed fine : ls /sys/bus/platform/drivers/imx-media/capture-subsystem/
[14:04] <narmstrong> driver            imx-ipuv3-ic.10   imx-ipuv3-ic.3    imx-ipuv3-ic.5    imx-ipuv3-vdic.2  modalias          power             uevent
[14:04] <narmstrong> driver_override   imx-ipuv3-ic.11   imx-ipuv3-ic.4    imx-ipuv3-ic.9    imx-ipuv3-vdic.8  of_node           subsystem         video4linux
[14:06] <narmstrong> I based the DT structure on the sabresd dtsi, and I have no error on probe of either the ipu or the cameras
[14:08] <pinchartl> narmstrong: what's the contents of /sys/bus/media/devices/ ?
[14:08] <narmstrong> pinchartl: empty
[14:08] <narmstrong> same for drivers
[14:09] <pinchartl> ok
[14:09] <pinchartl> I thought the imx6 ipu driver was MC-based, but I could be wrong
[14:10] <pinchartl> in that case you can probably forget about all I've said regarding pipeline configuration
[14:19] <narmstrong> well, imx-media-dev.c calls media_device_register() at some point https://github.com/torvalds/linux/blob/master/drivers/staging/media/imx/imx-media-dev.c#L367
[14:20] <pinchartl> hmmmm...
[14:20] <pinchartl> I'm getting puzzled then
[14:20] <pinchartl> CONFIG_MEDIA_CONTROLLER=y ?
[14:20] <pinchartl> CONFIG_VIDEO_V4L2_SUBDEV_API=y ?
[14:21] <javier__> narmstrong: can you check if the imx_media_probe_complete() callback is executed?
[14:21] <narmstrong> javier__: I'll check that
[14:21] <javier__> narmstrong: because the v4l2 devices are registered async and the media device is registered when all the pending devices are registered
[14:22] <narmstrong> pinchartl: root@base-station:~# zcat /proc/config.gz | grep MEDIA_CONTROLLER
[14:22] <narmstrong> CONFIG_MEDIA_CONTROLLER=y
[14:22] <narmstrong> root@base-station:~# zcat /proc/config.gz | grep CONFIG_VIDEO_V4L2_SUBDEV_API
[14:22] <narmstrong> CONFIG_VIDEO_V4L2_SUBDEV_API=y
[14:22] <javier__> so there should be a imx_media_subdev_bound() for every pending device (the list of pending devices is taken from the DT)
[14:24] <javier__> narmstrong: I'm not familiar with imx but I would guess that one of the pending devices isn't bound (maybe the driver isn't enabled or the driver fails to probe?)
[14:24] <narmstrong> javier__: it's possible, I'll check right now it everything has probed
[14:24] <javier__> narmstrong: Ok
[14:57] <narmstrong> weird, I can't see the video-mux device being probed
[14:57] <javier__> narmstrong: can you share your DTS?
[14:58] <narmstrong> javier__: I can extract the camera/ipu  related parts
[14:59] <javier__> narmstrong: Ok
[15:03] <narmstrong> javier__: http://termbin.com/h8x6
[15:12] <javier__> narmstrong: it looks correct
[15:12] <javier__> and ov5640_probe() probes correctly, right?
[15:15] <javier__> narmstrong: https://elixir.bootlin.com/linux/v4.16/source/drivers/media/i2c/ov5640.c#L2527 here is where the sensor v4l2 subdev is registered
[15:15] <narmstrong> yes
[15:15] <javier__> that should trigger a call to https://elixir.bootlin.com/linux/v4.16/source/drivers/staging/media/imx/imx-media-dev.c#L156
[15:16] <javier__> and if is the only pending subdev, then trigger a call to https://elixir.bootlin.com/linux/v4.16/source/drivers/staging/media/imx/imx-media-dev.c#L346 that will register the media dev
[15:20] <narmstrong> yep, I'll continue investigating. Thanks for looking at the DT
[15:23] <javier__> narmstrong: no worries, I'm intrigued now :)
[15:24] <javier__> you mentioned video_mux_probe() wasn't called? I wonder if the "video-mux" device is registered at all, maybe is missing a status = "okay" propery?
[15:24] <narmstrong> javier__: there is no "status" property at all, so it should probe
[15:24] <javier__> narmstrong: cool, I didn't check if had a status = "disabled" on some of the included .dtsi
[15:24] <narmstrong> same for the parent simple-mfd, none of the child nodes are probed
[15:25] <javier__> narmstrong: sorry that I can't be of much help, I've no idea why isn't probing...
[15:27] <jmondi> sailus: Hi Sakari
[16:40] <hverkuil_> FYI: posting v15 of the Request API is delayed: I forgot that I'm attending a course from Mon-Wed this week.
[16:40] <hverkuil_> The current version is here: https://git.linuxtv.org/hverkuil/media_tree.git/log/?h=reqv15
[16:41] <hverkuil_> Should be pretty good, but I need to add some tests to v4l2-compliance before I can post it.
[17:05] *** hverkuil has left 
[19:03] <sailus> jmondi: Back in a moment if all goes well...
[19:16] <ndufresne> pinchartl, I have an Inogeni here, which cause UVC driver to send couple of empty payload buffers (with the error flag set), but recently I started having truncated buffers (the frame size is too small), without the ERROR flag set
[19:16] <ndufresne> pinchartl, should UVC driver detect this ?
[19:21] <pinchartl> ndufresne: if it's an uncompressed format it shoud
[19:22] <pinchartl> s/shoud/should/
[19:25] <ndufresne> ok, right now it just let that buffer go ..
[19:31] <sailus> jmondi: That's better.
[19:49] <ndufresne> pinchartl, the nodrop parameter in uvcvideo module is a bit confusing, it won't really drop the buffer, instead if will return it with payload size to 0 and ERROR flag set ...
[19:50] <pinchartl> when nodrop is false ?
[19:58] <ndufresne> yes, when it's false (default) it will not really drop, but set the payload to 0
[19:58] <ndufresne> anyway, not a big deal, it's been a while now that I have code dropping these
[19:59] <ndufresne> pinchartl, so, I'm not UVC expert, how can a frame be truncated, but without having any UVC_STREAM_ERR ?
[20:00] <ndufresne> too slow ? I'm starting to wonder if that issue won't go away with kbingham async stuff ...
[20:02] <pinchartl> two things
[20:02] <pinchartl> one, if nodrop doesn't work, then let's remove the option completely
[20:02] <pinchartl> I don't like it
[20:03] <pinchartl> what happens when nodrop=true ? I expect that you'll receive buffers with bytesused=some value and the error flag set
[20:03] <pinchartl> second, a frame can be truncated if packets are lost (for whatever reason)
[20:03] <pinchartl> Kieran's patches can help
[20:03] <pinchartl> but the uvcvideo driver is supposed to detect the condition and set the error flag
[20:03] <pinchartl> if it doesn't, it's a bug
[20:04] <ndufresne> pinchartl, I think it works, but what it does is special, it makes the corrupted buffer 0 payload
[20:04] <ndufresne> what does not seems to work is the check in uvc_video_validate_buffer()
[20:04] <ndufresne> though, when I read this code it seems correct
[20:05] <ndufresne> dwMaxVideoFrameSize != buf->bytesused ... it's pretty strict
[20:05] <pinchartl> by 0 payload, doe you mean bytesused = 0 ?
[20:05] <pinchartl> s/doe/do/
[20:06] <ndufresne> yes, bytesused is set to 0
[20:06] <ndufresne> "drop == return a buffers with bytesused set to 0)
[20:06] <pinchartl> that's not how it's supposed to work
[20:06] <pinchartl> could you try to debug it to see where the problem comes from ?
[20:06] <ndufresne> pinchartl, how do I figure-out which decoder my devices uses (isoc vs bulk) ?
[20:07] <ndufresne> I just notice that uvc_video_decode_bulk() does not call uvc_video_validate_buffer()
[20:09] <pinchartl> it's most probably isoc
[20:10] <pinchartl> lsusb will tell you
[20:10] <pinchartl> check the endpoint in the video streaming interface
[20:11] <ndufresne> I need to learn to read that https://paste.fedoraproject.org/paste/vawX8EKQG1TEEizqY8SeIQ
[20:13] <ndufresne> after all the frames sizes, it says Transfer Type            Bulk
[20:13] <pinchartl> lsusb -d 046d:080a -v | awk '/VideoStreaming Interface Descriptor/ { intf=1 } /Endpoint Descriptor/ { if (intf) ep=1; intf=0 } /Transfer Type/ { if (ep) print $0; ep=0 }'
[20:13] <pinchartl> replace 046d:080a with your device VID:PID
[20:13] <ndufresne> yes, Bulk
[20:14] <pinchartl> (why does paste.fedoraproject.org require javascript to display a page???)
[20:14] <ndufresne> this one does not, https://paste.fedoraproject.org/paste/vawX8EKQG1TEEizqY8SeIQ/raw
[20:14] <pinchartl> bulk isn't as well tested as isoc
[20:14] <pinchartl> thank you
[20:15] <pinchartl> could you rerun lsusb as root ? otherwise the string descriptors are not printed
[20:15] <ndufresne> as root https://paste.fedoraproject.org/paste/q607QsE2NxqIr1iHVW-zoA/raw
[20:16] <ndufresne> why is bulk special ?
[20:17] <ndufresne> I guess a good first step would be that, https://paste.fedoraproject.org/paste/0wBPXwCzd0d~U8f1-0QbWg/raw
[20:17] <ndufresne> (not tested yet)
[20:17] <pinchartl> because most devices use isoc
[20:18] <pinchartl> looks like a good test indeed
[20:18] <pinchartl> ndufresne: I dislike your camera already :-)
[20:19] <pinchartl>         guidExtensionCode         {ffffffff-ffff-ffff-ffff-ffffffffffff
[20:19] <pinchartl> but fortunately
[20:19] <pinchartl>         bControlSize            3
[20:19] <pinchartl>         bmControls( 0)       0x00
[20:19] <pinchartl>         bmControls( 1)       0x00
[20:19] <pinchartl>         bmControls( 2)       0x00
[20:19] <ndufresne> haha, it's not exactly a camera
[20:19] <ndufresne> https://inogeni.com/product/4k-to-usb-3
[20:20] <ndufresne> they keep updating the firmware, it possible I'm a bit out of sync
[20:20] <pinchartl> other than that it seems more or less reasonable
[20:21] <pinchartl> I wonder if it runs Linux internally
[20:22] <ndufresne> no idea, I should open it ;-P
[20:28] <ndufresne> would be something like a  Cypress EZ-USB® FX3
[20:29] <ndufresne> so I'm not sure it runs a proper OS
[20:33] <ndufresne> more details here, http://www.cypress.com/news/cypress-s-programmable-superspeed-usb-solution-brings-flexibility-and-streaming-hd-video
[20:34] <pinchartl> not linux then, no
[20:38] <ndufresne> but in general, if there is anything important they need to fix in the descriptor let me know, they've been pretty responsive, I guess when you pay 400$ per unit, it's not like the wecams ;-P
[20:38] <ndufresne> ok, have to go, will try and one liner patch tomorrow
[20:40] <pinchartl> :-)
[20:40] <pinchartl> the extension unit I pointed to is useless
[20:40] <pinchartl> it exposes 0 controls
[20:40] <pinchartl> and has a GUID that's clearly not initialized
[20:40] <pinchartl> it should be removed from the descriptors
[20:41] <mchehab> sailus: ping
[20:41] <mchehab> pinchartl: what are those patches you pinged me last Thrusday to take a look?
[20:44] <pinchartl> mchehab: https://patchwork.linuxtv.org/patch/49770/
[20:44] <pinchartl> it's a fix for a nasty leak
[20:44] <pinchartl> the bug has been introduced in v4.14
[20:44] <pinchartl> so it's not a regression fix
[20:44] <pinchartl> but I'd like if it could be merged in v4.18 instead of waiting for v4.19
[20:51] <sailus> mchehab: Pong.
[20:51] <sailus> Last Thursday?
[20:52] <sailus> Hmm. I only can think of pull requests. But patches?
[20:53] <sailus> If you mean the fwnode changes I mentioned I've been working on --- I haven't sent them out for review yet.
[20:59] <sailus> Time to go, back tomorrow...
[21:18] <mchehab> sailus: sorry, was at another IRC channel
[21:23] <mchehab> sailus: I'm referring to this one (inside one of your git pull requests): 0004-media-ov772x-allow-i2c-controllers-without-I2C_FUNC_.patch