<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Dec 20, 2016 at 12:26 PM, Greg KH <span dir="ltr">&lt;<a href="mailto:greg@kroah.com" target="_blank">greg@kroah.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left-color:rgb(204,204,204);border-left-width:1px;border-left-style:solid"><div class="HOEnZb"><div class="h5">On Tue, Dec 20, 2016 at 12:15:22PM +0200, Ran Shalit wrote:<br>
&gt; On Tue, Dec 20, 2016 at 11:38 AM, Greg KH &lt;<a href="mailto:greg@kroah.com">greg@kroah.com</a>&gt; wrote:<br>
&gt; &gt; On Mon, Dec 19, 2016 at 06:08:47PM +0200, Ran Shalit wrote:<br>
&gt; &gt;&gt; Hello,<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; I want to use DMA from userspace.<br>
&gt; &gt;<br>
&gt; &gt; Why?<br>
&gt;<br>
&gt; Hi Greg,<br>
&gt;<br>
&gt; We want that a userspace layer (a library) will do some HW related issues.<br>
&gt; We have a memory mapped space (from FPGA), so we think it will be<br>
&gt; easier, and I think also more correct way , that we create the driver,<br>
&gt; and interact hadrware using the mapped memory space, and also do the<br>
&gt; protocols in userspace. The only thing that is less easy in userspace<br>
&gt; is using interrupt, and dma. but that is also possible if we just wrap<br>
&gt; the dma, and interrupt in a character device (or use uio as you<br>
&gt; suggested below).<br>
&gt; &gt;<br>
&gt; &gt;&gt; I already use dma in kernel, and now I want can create a character<br>
&gt; &gt;&gt; device which will be responsible for this.<br>
&gt; &gt;<br>
&gt; &gt; Why?<br>
&gt; &gt;<br>
&gt; &gt;&gt; The only problem is that I want to use the same memory which was<br>
&gt; &gt;&gt; allocated in kernel with dma_alloc_coherent.<br>
&gt; &gt;<br>
&gt; &gt; Why?<br>
&gt;<br>
&gt; in kernel we use dma_alloc_coherent, which returns contiguous memory.<br>
&gt; As I understand, we can mmap in userspace the returned  physical<br>
&gt; address, and use the returned virtual address in userspace.<br>
&gt;<br>
&gt;<br>
&gt; &gt;<br>
&gt; &gt;&gt; Is it correct to use mmap in order to use the phsyical memory which<br>
&gt; &gt;&gt; was allocated with dma_alloc_coherent ?<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; If it&#39;s that simple it can be surely helpful, and the simple driver<br>
&gt; &gt;&gt; which wraps dma_alloc_coherent can do the job for dmaing from<br>
&gt; &gt;&gt; userspace.<br>
&gt; &gt;<br>
&gt; &gt; Have you looked at the uio driver interface?<br>
&gt; &gt;<br>
&gt; &gt; But again, why?  What problem are you trying to solve here?<br>
&gt;<br>
&gt; We need to do some interaction with HW , but since most of the HW is<br>
&gt; mapped to physical address (FPGA), it seem simpler to do that in<br>
&gt; userspace (HW library), instead of doing this in kernel. What do you<br>
&gt; think ?<br>
<br>
</div></div>I think you should use the UIO driver api, as that&#39;s exactly what it was<br>
written for.  Have you looked at it yet?  It handles your interrupt<br>
logic for you.<br>
<br></blockquote><div>Hello,</div><div><br></div><div>If I may please ask, I made some reading about uio, but didn&#39;t yet understand what&#39;s the benefit of using uio instead of creating a character device ? </div><div><br></div><div>Thanks,</div><div>Ran</div><div><br></div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left-color:rgb(204,204,204);border-left-width:1px;border-left-style:solid">
thanks,<br>
<br>
greg k-h<br>
</blockquote></div><br></div></div>