From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_2 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 84DA1C433FE for ; Tue, 21 Sep 2021 08:11:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 662C6611C5 for ; Tue, 21 Sep 2021 08:11:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231161AbhIUIMv convert rfc822-to-8bit (ORCPT ); Tue, 21 Sep 2021 04:12:51 -0400 Received: from relay1-d.mail.gandi.net ([217.70.183.193]:64253 "EHLO relay1-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231149AbhIUIMh (ORCPT ); Tue, 21 Sep 2021 04:12:37 -0400 Received: (Authenticated sender: miquel.raynal@bootlin.com) by relay1-d.mail.gandi.net (Postfix) with ESMTPSA id 0337A24000F; Tue, 21 Sep 2021 08:11:05 +0000 (UTC) Date: Tue, 21 Sep 2021 10:11:05 +0200 From: Miquel Raynal To: Jonathan Cameron Cc: Lars-Peter Clausen , linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org, Thomas Petazzoni , Nuno Sa Subject: Re: [PATCH v2 15/16] iio: adc: max1027: Add support for external triggers Message-ID: <20210921101105.02f2fae9@xps13> In-Reply-To: <20210920184338.0a9c5863@jic23-huawei> References: <20210902211437.503623-1-miquel.raynal@bootlin.com> <20210902211437.503623-16-miquel.raynal@bootlin.com> <20210905171046.1681482d@jic23-huawei> <20210915121832.7766fdd7@xps13> <20210918181308.1b41cc3a@jic23-huawei> <20210920103739.069ee8b2@xps13> <20210920184338.0a9c5863@jic23-huawei> Organization: Bootlin X-Mailer: Claws Mail 3.17.7 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Jonathan, jic23@kernel.org wrote on Mon, 20 Sep 2021 18:43:38 +0100: > On Mon, 20 Sep 2021 10:37:39 +0200 > Miquel Raynal wrote: > > > Hi Jonathan, > > > > jic23@kernel.org wrote on Sat, 18 Sep 2021 18:13:08 +0100: > > > > > On Wed, 15 Sep 2021 12:18:32 +0200 > > > Miquel Raynal wrote: > > > > > > > Hi Jonathan, Nuno, > > > > > > > > jic23@kernel.org wrote on Sun, 5 Sep 2021 17:10:46 +0100: > > > > > > > > > On Thu, 2 Sep 2021 23:14:36 +0200 > > > > > Miquel Raynal wrote: > > > > > > > > > > > So far the driver only supported to use the hardware cnvst trigger. This > > > > > > was purely a software limitation. > > > > > > > > > > > > The IRQ handler is already registered as being a poll function and thus > > > > > > can be called upon external triggering. In this case, a new conversion > > > > > > must be started, and one must wait for the data to be ready before > > > > > > reading the samples. > > > > > > > > > > > > As the same handler can be called from different places, we check the > > > > > > value of the current IRQ with the value of the registered device > > > > > > IRQ. Indeed, the first step is to get called with a different IRQ number > > > > > > than ours, this is the "pullfunc" version which requests a new > > > > > > > > > > pullfunc? > > > > > > > > > > > conversion. During the execution of the handler, we will wait for the > > > > > > EOC interrupt to happen. This interrupt is handled by the same > > > > > > helper. This time the IRQ number is the one we registered, we can in > > > > > > this case call complete() to unlock the primary handler and return. The > > > > > > primary handler continues executing by retrieving the data normally and > > > > > > finally returns. > > > > > > > > > > Interesting to use the irq number.. > > > > > > > > > > I'm a little nervous about how this has ended up structured. > > > > > I'm not 100% sure my understanding of how you've done it is correct. > > > > > > > > > > We should have the following situation: > > > > > > > > > > IRQ IN > > > > > | > > > > > v > > > > > Trigger IRQ / EOC IRQ (this is the spi->irq) (currently iio_trigger_generic_data_poll_ready) > > > > > | | > > > > > --------- v > > > > > | | complete > > > > > v v > > > > > TrigH1 (TrigH2) (these are the IRQs below the irq_chip IIO uses to demux triggers) > > > > > > > > > > > > > > > So when using it's own trigger we are using an internal interrupt > > > > > tree burried inside the IIO core. When using it only as an EOC interrupt we shouldn't > > > > > be anywhere near that internal interrupt chip. > > > > > > > > > > So I'm surprised the IRQ matches with the spi->irq as > > > > > those trigH1 and trigH2 will have their own IRQ numbers. > > > > > > > > > > For reference I think your architecture is currently > > > > > > > > > > IRQ IN > > > > > | > > > > > v > > > > > Trigger IRQ > > > > > | > > > > > v > > > > > TRIG H1 > > > > > Either fills the buffer or does the completion. > > > > > > > > > > I am a little confused how this works with an external trigger because the Trig H1 interrupt > > > > > should be disabled unless we are using the trigger. That control isn't exposed to the > > > > > driver at all. > > > > > > > > > > Is my understanding right or have I gotten confused somewhere? > > > > > > > > I think the confusion comes from the fact that in the > > > > current implementation, Trigger IRQ and EOC IRQ handlers are the same. > > > > This comes from a possible misunderstanding in the previous review, > > > > where I understood that you and Nuno wanted to keep using > > > > iio_trigger_generic_data_rdy_poll() hand have a single handler in the > > > > driver (which I think is far from optimal). I can try to split that > > > > handler again to have two distinct paths. > > > That is the right thing to do. The split should be done a little differently > > > than you have it in v3. I've added comments to that patch. > > > > > > Data ready triggers are always a little messy because we end up with a split that > > > is: > > > > > > Trigger side - Interrupt comes in here... > > > > > > --------- GENERIC IIO HANDLING ----- Take the trigger and routes it to the device code --- > > > > > > Device side - We do the data reading here. > > > > > > The reason for this is that we may well have other devices using the same trigger > > > and we want to keep the model looking the same for all devices. > > > > > > A push into an iio buffer should always be on the device side of that boundary. > > > > This is much clearer, I think I have got the main idea. > > > > However I have a question that is specific to the current situation. In > > the case of this particular device, I don't really understand how > > another device could use the same trigger than the hardware one, > > because we have no indication of the trigger being latched. When we get > > the information the data is already in the FIFO, this means we get the > > information much later than when the hardware transitioned to indicate > > a conversion request. Is it that in your model, we should be able to > > use the EOC IRQ handler to trigger another IIO device, even though > > this implies an additional delay? > > It's not ideal, but sometimes it is better to have somewhat consistent > 'synchronization' between multiple devices. You are correct that anything > else using a data ready trigger will be a bit late - but the frequencies > will at least be matched. Not great but the best possible under these > circumstances. > > If it's possible to use a truely shared hardware trigger that is obviously > better than you can do here. Ok. This was definitely a part of the puzzle that I missed in the first place, making harder the understanding (and the interest) of the driver vs. core split. Cheers, Miquèl