Received: by 2002:a05:6a10:c7d3:0:0:0:0 with SMTP id h19csp73254pxy; Sat, 14 Aug 2021 00:32:50 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxi7YuJpcSO0PLFAVPwvmIXKvGJzU8k+1rDNYLBf33vK1UZUmypr11dMp1v0UP3MgHb3LnE X-Received: by 2002:a05:6602:26cb:: with SMTP id g11mr4874284ioo.110.1628926369794; Sat, 14 Aug 2021 00:32:49 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1628926369; cv=none; d=google.com; s=arc-20160816; b=fajn6QZPwwuUiCGwCZ9pi1G+Tn205MMsJVMAqPM+6tPd+AOR6Kd4l1uMJ35dhKiHpm 4eEsUa15GVDAWGrTINQKojJTlKo57LVr37bTQvC+Cb6ZODc2xpYb9TWIr70Xaywuf+so FIdX2uH01A8c7cbBx9Y2peog/4JUR6Mm6CDHzaZ7dsS5z2j/LM8rHna63sSmtOtvD0cB X6qD0MLeGGK5NQqUDxo3vT4wy8iu09MzUAVzOO9FJuiTwUIWzkB6Zdjolzrqw/bxDqoa BzXV9JZ1x7tcLa11wIxeEJXg6j9ALLBzHRW3f7LioTrlhq9EnJBBikdFlFYePvcWe+Ry NYWg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=0ERcqJoTaJ8Tt8utLSUDfnatxywqPljnJKRdJ22P6lU=; b=bOxHx0Q6eaauc308NJvrRkv8Pb73MkSeHuMTpcZ1IUwCKWYi44raQoSuRubyeiLLfJ cwPP07+rl4FUnocsq8IJO0uAW1LnhwO3gf4H/esgWOATFah/9jn/hvOUjtZT4Lqxtw8O uTCe6YpYKzqS4iG+AVw+lIp95YLLCoVeqo7i3g1CtnIC7P1IoZYE9wstUDtso5CD0glT fY0sbQr+qYqOPQ5NLBRI5Cggria5tN+anDGtc6XOt34ztQfbWt0KviU4KWyE0Gffbi72 4uEvCy3LVarabUU352ysOYDJS/nrch6i96ANUIyGnApSQOcVg5/24mPh8o8jCwEEggv2 FypA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id p23si4420162jal.44.2021.08.14.00.32.37; Sat, 14 Aug 2021 00:32:49 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237148AbhHNHaw (ORCPT + 99 others); Sat, 14 Aug 2021 03:30:52 -0400 Received: from verein.lst.de ([213.95.11.211]:49474 "EHLO verein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236542AbhHNHav (ORCPT ); Sat, 14 Aug 2021 03:30:51 -0400 Received: by verein.lst.de (Postfix, from userid 2407) id DBFA567373; Sat, 14 Aug 2021 09:30:19 +0200 (CEST) Date: Sat, 14 Aug 2021 09:30:19 +0200 From: Christoph Hellwig To: Paul Cercueil Cc: Jonathan Cameron , Sumit Semwal , Christian =?iso-8859-1?Q?K=F6nig?= , Christoph Hellwig , linux-iio@vger.kernel.org, io-uring@vger.kernel.org, linux-media@vger.kernel.org, linux-kernel@vger.kernel.org, Michael Hennerich , Alexandru Ardelean , dri-devel@lists.freedesktop.org, linaro-mm-sig@lists.linaro.org Subject: Re: IIO, dmabuf, io_uring Message-ID: <20210814073019.GC21175@lst.de> References: <2H0SXQ.2KIK2PBVRFWH2@crapouillou.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2H0SXQ.2KIK2PBVRFWH2@crapouillou.net> User-Agent: Mutt/1.5.17 (2007-11-01) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Aug 13, 2021 at 01:41:26PM +0200, Paul Cercueil wrote: > Hi, > > A few months ago we (ADI) tried to upstream the interface we use with our > high-speed ADCs and DACs. It is a system with custom ioctls on the iio > device node to dequeue and enqueue buffers (allocated with > dma_alloc_coherent), that can then be mmap'd by userspace applications. > Anyway, it was ultimately denied entry [1]; this API was okay in ~2014 when > it was designed but it feels like re-inventing the wheel in 2021. > > Back to the drawing table, and we'd like to design something that we can > actually upstream. This high-speed interface looks awfully similar to > DMABUF, so we may try to implement a DMABUF interface for IIO, unless > someone has a better idea. To me this does sound a lot like a dma buf use case. The interesting question to me is how to signal arrival of new data, or readyness to consume more data. I suspect that people that are actually using dmabuf heavily at the moment (dri/media folks) might be able to chime in a little more on that. > Our first usecase is, we want userspace applications to be able to dequeue > buffers of samples (from ADCs), and/or enqueue buffers of samples (for > DACs), and to be able to manipulate them (mmapped buffers). With a DMABUF > interface, I guess the userspace application would dequeue a dma buffer > from the driver, mmap it, read/write the data, unmap it, then enqueue it to > the IIO driver again so that it can be disposed of. Does that sound sane? > > Our second usecase is - and that's where things get tricky - to be able to > stream the samples to another computer for processing, over Ethernet or > USB. Our typical setup is a high-speed ADC/DAC on a dev board with a FPGA > and a weak soft-core or low-power CPU; processing the data in-situ is not > an option. Copying the data from one buffer to another is not an option > either (way too slow), so we absolutely want zero-copy. > > Usual userspace zero-copy techniques (vmsplice+splice, MSG_ZEROCOPY etc) > don't really work with mmapped kernel buffers allocated for DMA [2] and/or > have a huge overhead, so the way I see it, we would also need DMABUF > support in both the Ethernet stack and USB (functionfs) stack. However, as > far as I understood, DMABUF is mostly a DRM/V4L2 thing, so I am really not > sure we have the right idea here. > > And finally, there is the new kid in town, io_uring. I am not very literate > about the topic, but it does not seem to be able to handle DMA buffers > (yet?). The idea that we could dequeue a buffer of samples from the IIO > device and send it over the network in one single syscall is appealing, > though. Think of io_uring really just as an async syscall layer. It doesn't replace DMA buffers, but can be used as a different and for some workloads more efficient way to dispatch syscalls.