[09:37] <kbingham> rubdos: The responsibility to get those drivers into mainline lies with whomever is writing the drivers / updates ... I suspect you should contact whoever owns/runs github.com/tbsdtv
[09:37] <rubdos> roger
[09:41] <rubdos> I hoped that the author of tbsdtv would reply in this channel :)
[12:44] <svarbanov> hverkuil: hi, any idea why the buffers from OUPUT queue are dma_sync_sg_for_cpu on dqbuf?
[12:55] <hverkuil> svarbanov: because after the buffer is dequeued, the CPU will likely fill them up again? In principle, when buffers are dequeued the CPU 'owns' them.
[12:59] <svarbanov> hverkuil: hmm, in this case (OUTPUT queue) I think that the cache maintenance should be in qbuf, and dqbuf shouldn't touch the buffer. something more the buffer is allocated with dma_dir=DMA_TO_DEVICE, and if IOMMU exist it will be translated to IOMMU_READ then if device write into the buffer iommu fault will be triggered
[13:01] <svarbanov> hverkuil: this is what I'm observing now with venus encoder driver where the firmware side want to write into the OUTPUT type buffer (adding some padding lines at the end when resolution is not multiple of the macroblock)
[13:02] <svarbanov> hverkuil: so the simplest solution would be to mark the dma_dir as DMA_BIDIRECTIONAL
[13:04] <svarbanov> hverkuil: this will fix my problem but with the price of pointless cache maintenance on dqbuf.
[13:05] <hverkuil> Ah, that last sentence helped understanding your problem.
[13:06] <hverkuil> The bottom-line is that we are still missing good cache support. We handle the worst-case today but we don't have hints that can help avoid unnecessary cache maintenance operations.
[13:06] <hverkuil> sailus has been working on this, although I don't know if that covers your use-case.
[13:08] <svarbanov> hverkuil: ok, thanks I'll ping sailus then
[14:11] <hverkuil> mchehab: do you know when you will merge 4.13-rc1 into our master branch?
[14:12] <mchehab> likely later today
[14:12] <mchehab> well, I guess I can do it now, if you're needing
[14:12] <hverkuil> OK, thanks.
[14:13] <hverkuil> No later today is fine.
[14:13] <hverkuil> I'll continue tomorrow processing patches.
[14:20] <mchehab> pushing it
[14:22] <hverkuil> got it. Thanks!
[14:28] <mchehab> I'll be pushing 3 patches I already queued there
[14:29] <mchehab> (including one that it is currently marked as delegated to you, from Javier)
[14:32] <sailus> hverkuil, svarbanov: It's complicated.
[14:32] <sailus> I was working on a patchset to address the issues but had never time to finish it.
[14:32] <svarbanov> sailus: I'm sure it is :)
[14:32] <sailus> In particular, V4L2 does not require the user to leave the buffers untouched.
[14:33] <sailus> This is actually why there's a need for a cache operation in dqbuf as well.
[14:33] <sailus> We should be able to avoid this by using e.g. the user-set buffer flag which the user could use to tell the buffer hasn't been written to.
[14:35] <sailus> The current VB2 implementation reflects the state of the DMA API implementation on ARM which is wrong.
[14:35] <svarbanov> sailus: I looked at the patchset which pinchartl resend, and unfortunately it doesn't handle my case with OUTPUT type of buffers
[14:36] <sailus> Some drivers also access the buffer from their interrupt handlers...
[14:36] <sailus> I have updated it, let me find it...
[14:37] <svarbanov> sailus: i.e. in my case the OUTPUT buffer is touched by device but is mapped as DMA_TO_DEVICE when is allocated => iommu fault with wrong protection attributes
[14:42] <sailus> For writing?
[14:43] <sailus> Reading is what's supposed to happen, right?
[14:44] <svarbanov> sailus: the buffer is mapped in iommu as IOMMU_READ (DMA_TO_DEVICE) but the device writes to the buffer (adding some padding at the end of the buffer) hence iommu fault
[14:46] <sailus> Ouch.
[14:46] <svarbanov> sailus: yes, I expect the device use the buffer as read only, but it happens that it want to write into it. So I wonder how to solve that, I want to make the write legal
[14:46] <sailus> In order to support a hardware bug? :-)
[14:47] <svarbanov> sailus: maybe or probably bad sw design decision :)
[14:47] <sailus> Is this 1) something that the user space should be interested in, 2) garbage or 3) the same what the buffer used to contain?
[14:49] <svarbanov> sailus: it's a mixture :) if I do not fix on some resolutions I will have garbage on bottom and userspace should fix that
[14:50] <svarbanov> sailus: my workaround is to map OUTPUT type of buffers as DMA_BIDIRECTIONAL
[14:52] <sailus> Could you elaborate a bit what's happening there?
[14:52] <svarbanov> sailus: and after that I saw that memop .finish do dma_sync_sg_for_cpu which IMO contradicts with the dma mapping DMA_TO_DEVICE
[14:53] <svarbanov> sailus: I'll have a meeting shortly, so can we continue tomorrow
[14:53] <sailus> I.e. why does the hardware write there?
[14:53] <sailus> Ack.
[14:54] <svarbanov> sailus: ok, thanks!
[18:48] <f11f12> I'm debugging a v4l2 driver. The  v4l2_device_register returns w/o error, should I already see a /dev/videoX device node?
[18:58] <hverkuil> f11f12: no. It's the video_register_device that creates the node.
[19:08] <f11f12> hverkuil: thanks, I'll see where that is located, since I apparently never get there...
[19:10] <f11f12> the driver uses the v4lw_async_notifier, so it's probably in the subdevice...
[19:12] <headless> hverkuil: have you read all my replies to the IMR driver patch?
[19:12] <headless> asking because I haven't seen anything from you since the review of v6...
[19:32] <f11f12> hverkuil: do you happen to know any v4l2 subdev that is not an i2c device?
[23:17] *** zaxari has quit IRC (Ping timeout: 268 seconds)