<!-- 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>

   ***: prabhakarlad has left
   ayaka: I have a problem with v4l2 dma-sg, I have a device with IOMMU
   <br> so it doesn't need the memory is in contiguous in physics or virtual, but it is in dma address
   <br> I use the multi-planes buffers, but I found the address of second plane is less than first plane
   <br> which means the second plane is mapping to IOMMU first
   <br> or allocate first
   <br> but I need the second plane is append after the first plane
   <br> any ideas on how to control the dma-sg to do that
   sailus: <u>ayaka</u>: You could use the dma-contig mem ops instead if you're behind an IOMMU in principle, but that does not help if the planes need to be in order in the address space.
   <br> That is actually not trivial to handle with a generic IOMMU.
   ayaka: sailus, I just wonder why it would be that
   <br> sailus, is there a way to invoke the buffer allocation in driver, I mean allocate a buffer in manual
   <br> actually I don't need multi-planes
   <br> but it is hard for userspace to handle the memory alignment with the offset
   <br> as the userspace having no idea on where the second plane would actually start
   <br> so I have to use multi-planes
   <br> sailus, and I think I don't need Physically contiguous since I have an IOMMU
   <br> I thought it is used for those non-IOMMU device
   sailus: Then dma-contig is a better choice than dma-sg.
   <br> You don't need the scatterlists because of the IOMMU.
   <br> Well, there are different kinds of IOMMUs.
   ayaka: sorry, I don't understand
   <br> that IOMMU support mapping pages into device contiguous memory
   sailus: If you have an IOMMU, then the allocated memory, even if physically scattered around the system memory, can be mapped in a continuous manner in the device's virtual address space.
   <br> Hence dma-contig may be used.
   <br> It does not mean that the memory would be physically contiguous.
   <br> It would be if there is no IOMMU though.
   ayaka: ok I see
   <br> then when would the dma-sg is used?
   <br> the device support only access a page once time?
   sailus: If you have a device that does not use an IOMMU or requires physically contiguous memory.
   ayaka: I see, thank you
   <br> the https://linuxtv.org/downloads/v4l-dvb-apis/kapi/v4l2-videobuf.html make me confused
   sailus: Don't read videobuf documentation.
   <br> Videobuf is old and being phased out.
   <br> Use videobuf2 instead.
   ayaka: but this https://linuxtv.org/downloads/v4l-dvb-apis/kapi/v4l2-videobuf2.html doesn't cover those knowledge about the dma-sg dma-contig
   sailus: Yes, this is a known gap. :-(
   <br> The videobuf2 code is a lot more readable though.
   ayaka: it has been many years, videobuf2's documents never talk about which mem_ops I should use
   sailus: This is actually more related to DMA API than it is to videobuf2.
   <br> Videobuf2 uses the DMA API to allocate the memory.
   <br> I guess one could write a short description of how it works and put it into the documentation.
   ayaka: because in the previous kernel version, the iommu driver doesn't support of probing
   <br> I still worry about the DMA API would call the virtual ARM iommu
   <br> that is why I care about this problem
   sailus: It all needs to be set up correctly of course. :-)
   <br> But that's a bit out of scope of the videobuf2 documentation.
   ayaka: I think it works now
   sailus: :-)
   ayaka: I mean the iommu part
   sailus: Memory management in general tends to be complicated.
   ayaka: but I still need to solve the address position problem
   <br> I remember the samsung mfc would request each planes in different memory banks
   <br> I wonder how does it work
   ***: paul3741 has quit IRC (Ping timeout: 246 seconds)
   <br> tagr has quit IRC (Ping timeout: 246 seconds)
   ayaka: <u>sailus</u>: and thank you
   ezequielg: <u>hverkuil</u>: ping
   hverkuil: <u>ezequielg</u>: pong
   ***: benjiG has left
   ezequielg: about on the pixel format helpers, i don't see why we'd want to have the alpha plane in the bytes-per-plane array.
   <br> formats with alpha channels are always packed
   <br> the bytes-per-plane really only applies to planar format
   <br> it's not bytes-per-channel
   <br> <u>hverkuil</u>: ^
   hverkuil: I'm OK with that change. It's an internal API, so it can always be extended if needed.
   ezequielg: right.
   ***: lyakh has quit IRC (Excess Flood)
   mchehab: <u>hverkuil</u>: could you point again the command line needed to test bayer with qvidcap?
   <br> that one with vim2m
   <br> nevermind... I guess it was something like this:
   <br> v4l2-ctl --stream-mmap --stream-out-mmap --stream-to-host localhost --stream-out-hor-speed 1 -x pixelformat=RGBR
   hverkuil: <u>mchehab</u>: that looks correct.
   ndufresne: ezequielg, "formats with alpha channels are always packed", that's just a point in time, e.g. in gst we have A420 support (and 10bit variants), which have 4 planes and can be produced by JPEG2000 decoder
   ezequielg: <u>ndufresne</u>: aight, i see what you mean.
   ndufresne: (just saying on a theoretical basic, no idea if that has any impact in your code)
   ezequielg: it doesn't but only because we don't have that pixel format.