<!-- Some styling for better description lists --><style type='text/css'>dt { font-weight: bold;float: left;display:inline;margin-right: 1em} dd { display:block; margin-left: 2em}</style>

   ***: MJRider has left "So Long, and Thanks for All the Fish"
   svarbanov: <u>jo90</u>: i have one, but not sure is what you searching for: https://git.linaro.org/people/stanimir.varbanov/v4l2-decode.git/log/?h=ffmpeg-autotools
   <br> <u>sailus</u>: good morning
   sailus: <u>svarbanov</u>: Sorry, got late to work today.
   <br> Would afternoon work for you?
   svarbanov: <u>sailus</u>: no problem, I'm fine but before 4pm
   sailus: <u>svarbanov</u>: Ping?
   svarbanov: <u>sailus</u>: pong
   sailus: About the DMA direction issue you had.
   <br> Could you elaborate what's happening there?
   svarbanov: <u>sailus</u>: the problem is that the device which consuming OUTPUT type of buffers needs to add few lines padding at the end of the Y and UV planes, i.e. if the input resolution is 1920x1080 the device adds 8 lines. And writes that 8 lines onto the input buffer.
   jo90: <u>svarbanov</u>: Thank you.
   svarbanov: <u>sailus</u>: and because the input buffer is mapped as DMA_TO_DEVICE the iommu is mapped as IOMMU_READ, and the iommu is faulting (with protection violation)
   <br> <u>sailus</u>: all this happened when the input resolution is not multiple of 16 and the macroblock is 16x16
   sailus: Is the hardware really designed to do such a thing?
   <br> Isn't that a bug, that it's writing to an input buffer?
   svarbanov: <u>sailus</u>: no, it is intensional and actually the padding is added by a firmware which is controlling the hw blocks
   <br> <u>sailus</u>: so firmware do the padding to satisfy some hw alignment restrictions
   sailus: It'd probably be easier to by software, but perhaps the firmware has no configuration for that.
   <br> Firmware is bad.
   jo90: <u>svarbanov</u>: To be specific i am trying to do h.264 video decoding on coda960 vpu (soc i.mx6) with v4l2 driver, if possible with dmabuf support since need to make the display with weston. I will start with v4l2-decode
   svarbanov: <u>sailus</u>: yes, could be
   sailus: Would changing the DMA direction would be enough to get around this?
   <br> That's very annoying I have to admit.
   svarbanov: <u>jo90</u>: I re-written this app which original is test app for Samsung's mfc decoder/encoder, so you can look at the original one too. And I use v4l2-decode to test qcom venus decoder driver. Ofcourse you can try with gstreamer too, it has v4l2videodec plugin for that
   <br> <u>sailus</u>: I know, when I change the direction as read/write it is fine
   <br> <u>sailus</u>: I was thinking (diff which I sent to you) to add something like a quirk which will make possible driver to decide what will be the behavior (DMA mapping) for output type queue
   <br> <u>sailus</u>: https://paste.ubuntu.com/25125084/
   <br> <u>sailus</u>: the other thing which I found was that, even that we mapped is_output buffers DMA_TO_DEVICE (i.e. IOMMU_READ) we do dma_sync_sg_for_cpu() on dqbuf, which I think is redundant because the mapping says that the device must not write to the buffer
   <br> <u>sailus</u>: dma_sync_sg_for_cpu is for dma-sg memory allocator, but probably the other memory allocators doing the same thing
   sailus: It should be redundant, yes.
   <br> The DMA API usage is quite broken.
   <br> The API is a mess, too.
   svarbanov: <u>sailus</u>: ok, it is fine then, as you know for the problem :)
   sailus: The DMA direction is used in quite a few places.
   <br> Shoudln't they all be changed?
   <br> In principle, that is.
   <br> I'm not sure it'd be worth it though.
   <br> In that case it'd make sense to put the dma_dir directly to vb2_queue struct.
   svarbanov: <u>sailus</u>: we are going to cross the thin boundary between drivers and v4l2 core, and what decisions should be made from drivers and what from v4l2 core :)
   <br> <u>sailus</u>: I will think about your proposal
   sailus: It won't be pretty either way.
   svarbanov: <u>sailus</u>: but definitely dma_dir in vb2_queue will give more freedom for perf optimizations to the drivers
   sailus: Perhaps minimal changes would be the way to go after all.
   <br> And add a comment why it is so: to avoid an IOMMU fault.
   <br> It's easier to clean up the code later on when it seemingly does a sensible thing.
   svarbanov: <u>sailus</u>: you are agree with a flag in the vb2_queue, right
   jo90: <u>svarbanov</u>: Sure, I will. I initially tried with gst (with v4l2videodec and modified waylandsink for ivi shell support), but weston crasing during playback due to some render side issue, that whay i am trying the direct v4l way with dmabuf
   sailus: I'm not quite sure actually which approach would be better, that or your original proposal.
   <br> Either way, I think a comment saying the purpose of that would be good to have in the code.
   svarbanov: <u>sailus</u>: ok, I will cook an RFC and then we will see how is going
   <br> <u>jo90</u>: actually I have some code in v4l2-decode which directly using wayland protocol for dmabuf
   jo90: <u>svarbanov</u>: Could be a good reference for me, thanks again.
   prabhakarlad: <u>hverkuil</u>: ping
   hverkuil: <u>prabhakarlad</u>: pong
   prabhakarlad: hello, is it ok if I send a v4 just first patch ([v3 1/2] media: platform: davinci: prepare for removal of VPFE_CMD_S_CCDC_RAW_PARAMS ioctl) ?
   hverkuil: sure
   <br> it's just the commit log that needs a bit of work.
   <br> it'll be backported for quite a long way back, so you need clear reasons for that.
   prabhakarlad: Thanks ill post a v4 I have reworked on the commit log :)
   <br> Or may be you could have a look before I post https://pastebin.com/m5mi7Ck8
   hverkuil: It's up to you whether you want to cover pre-3.7 kernels as well (the driver was in drivers/media/video for those older kernels).
   prabhakarlad: Ill ask TI about if they are OK with 3.7, but I suppose that should be OK
   mchehab: snawrocki, pinchartl, sailus: we're about to start our meeting
   <br> kbingham, kbingham[m], pinchartl, hverkuil: FYI, just acked the VSP1 patches from the /14 series that touch under drivers/media
   kbingham[m]: <u>mchehab</u>: Thankyou very much :)
   mchehab: anytime
   kbingham[m]: (I guess now I have to finish reviewing them ... hehe )
   mchehab: :-)
   <br> acking is simpler than reviewing
   <br> :-)
   kbingham[m]: <u>mchehab</u>: My patch "[PATCH v2 3/3] drm: rcar-du: Repair vblank for DRM page flips using the VSP" touches both the DRM and VSP1 as well, so I think will be bundled in with that set. Could you take a look at that one and ack if possible as well please?
   mchehab: sent
   <br> yet, it sounded weird to have a WARN_ONCE on one of the routines
   kbingham: Aha - I think I put that in because there are some upcoming changes in behaviour in regards to frame ends - and I wanted to be sure that if we ever lost the race that was specific to the 'completed' flag we would know about it.
   mchehab: I see, but you could perhaps put it at the caller
   <br> anyway, not a big issue.. that's why I acked :-)
   kbingham: hehe thanks :)
   ***: benjiG1 has left
   dviola: hi
   <br> I'm running archlinux on a desktop computer and I'm trying to use a webcam (the kernel module in use is gspca_zc3xx), however, I can use the webcam only with firefox and mpv, and other applications
   <br> ffplay/ffmpeg is also ok
   <br> when I try to use it from chromium it says it can't use the webcam
   <br> I'm not sure if this is a build issue with chromium on archlinux, but it used to work fine before
   <br> found the issue, it's the archlinux chromium package that is broken
   BanHammor: i have a question
   <br> say i have a control that influences the size of the capture picture
   <br> (for example, dst_width=src_width - ctrl.val)
   <br> is there a decent way to disallow changing that control after buffers have been allocated with REQBUFS?
   ***: dviola has left "WeeChat 1.9"
   hverkuil: <u>BanHammor</u>: in the driver you need to check for vb2_is_busy() in the s_ctrl callback and return -EBUSY if someone tries to set that control and vb2_is_busy() is, well, busy.