On Tue, Oct 20, 2020 at 10:19 AM Carlos Rafael Giani via
lists.yoctoproject.org <crg7475=mailbox.org@...>
wrote:
On i.MX6 machines, it is currently not possible to use the ION
allocator. However, there is no hardware limitation that requires ION to
be disabled.
If ION were enabled, with a CMA heap, then it would be possible for
userspace to allocate DMA-BUF buffers. I could then enable the ion
packageconfig in the libimxdmabuffer recipe.
The defconfig only needs these additions:
CONFIG_ION=y
CONFIG_ION_SYSTEM_HEAP=y
CONFIG_ION_CMA_HEAP=y
I tried it out, worked fine.
Using DMA-BUF for allocating physically contiguous memory (via CMA) is
preferable over using other allocators (like the ones from the VPU, IPU
etc.) since it allows for proper buffer sharing, ownership transfer, is
based on FDs (though physical address are accessible via an NXP
extension), and there are extensions in OpenCL, OpenGL etc. for
importing DMA-BUF. V4L2 also has DMA-BUF support.
Opinions?
From the past experience I had with ION allocators in the past, I
would try to refrain from using it. It is still residing in staging
folder, which means that the API compatibility is not guaranteed. I
had an experience where Application used ION in 4.4.y kernel, and
should be re-written when 4.9.y kernel has been released due to
significant changes in the ION UAPI.
I would personally not recommend using it until it would be moved from
staging to drivers.
If one plans to base development on ION API - this should be taken
into consideration.
--
Regards,
Andrey.