LKML Archive on lore.kernel.org help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org> To: Miquel Raynal <miquel.raynal@bootlin.com> Cc: Lars-Peter Clausen <lars@metafoo.de>, Thomas Petazzoni <thomas.petazzoni@bootlin.com>, linux-iio@vger.kernel.org, <linux-kernel@vger.kernel.org> Subject: Re: [PATCH 16/16] iio: adc: max1027: Enable software triggers to be used without IRQ Date: Mon, 30 Aug 2021 11:54:25 +0100 [thread overview] Message-ID: <20210830115425.3fdb31b9@jic23-huawei> (raw) In-Reply-To: <20210818111139.330636-17-miquel.raynal@bootlin.com> On Wed, 18 Aug 2021 13:11:39 +0200 Miquel Raynal <miquel.raynal@bootlin.com> wrote: > Software triggers do not need a device IRQ to work. As opposed to > hardware triggers which need it to yield the data to the IIO core, > software triggers run a dedicated thread which does all the tasks on > their behalf. Then, the end of conversion status may either come from an > interrupt or from a sufficient enough extra delay. IRQs are not > mandatory so move the triggered buffer setup out of the IRQ condition. I'd stop referring to software triggers in these descriptions. This could just as easily be about enabling a different hardware trigger such as a gpio trigger or indeed on a dataready trigger provided by an entirely different device. Otherwise the logic is correct. Good to get this more flexible support into the driver. If we can make it a tiny bit more flexible by enabling use of the cnvst trigger to drive this 'and' other drivers that would be even better and conform more closely to the normal way an IIO driver work. The validate_device / validate_trigger callbacks are often about making it easier to bring a device driver up in the first place, so it's great to see them go away in later improvements like this. (note I'm not saying there aren't complex cases where we can't remove them though!) Jonathan > > Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> > --- > drivers/iio/adc/max1027.c | 20 +++++++++++--------- > 1 file changed, 11 insertions(+), 9 deletions(-) > > diff --git a/drivers/iio/adc/max1027.c b/drivers/iio/adc/max1027.c > index bb437e43adaf..e767437a578e 100644 > --- a/drivers/iio/adc/max1027.c > +++ b/drivers/iio/adc/max1027.c > @@ -567,16 +567,18 @@ static int max1027_probe(struct spi_device *spi) > if (!st->buffer) > return -ENOMEM; > > + /* Enable triggered buffers */ > + ret = devm_iio_triggered_buffer_setup(&spi->dev, indio_dev, > + &iio_pollfunc_store_time, > + &max1027_trigger_handler, > + NULL); > + if (ret < 0) { > + dev_err(&indio_dev->dev, "Failed to setup buffer\n"); > + return ret; > + } > + > + /* If there is an EOC interrupt, enable the hardware trigger (cnvst) */ > if (spi->irq) { > - ret = devm_iio_triggered_buffer_setup(&spi->dev, indio_dev, > - &iio_pollfunc_store_time, > - &max1027_trigger_handler, > - NULL); > - if (ret < 0) { > - dev_err(&indio_dev->dev, "Failed to setup buffer\n"); > - return ret; > - } > - > st->trig = devm_iio_trigger_alloc(&spi->dev, "%s-trigger", > indio_dev->name); > if (st->trig == NULL) {
prev parent reply other threads:[~2021-08-30 10:51 UTC|newest] Thread overview: 71+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-08-18 11:11 [PATCH 00/16] Bring software triggers support to MAX1027-like ADCs Miquel Raynal 2021-08-18 11:11 ` [PATCH 01/16] iio: adc: max1027: Fix wrong shift with 12-bit devices Miquel Raynal 2021-08-20 7:02 ` Sa, Nuno 2021-08-30 9:57 ` Jonathan Cameron 2021-08-18 11:11 ` [PATCH 02/16] iio: adc: max1027: Fix the number of max1X31 channels Miquel Raynal 2021-08-20 7:03 ` Sa, Nuno 2021-08-30 10:00 ` Jonathan Cameron 2021-08-18 11:11 ` [PATCH 03/16] iio: adc: max1027: Push only the requested samples Miquel Raynal 2021-08-20 7:10 ` Sa, Nuno 2021-08-30 10:07 ` Jonathan Cameron 2021-08-30 10:49 ` Sa, Nuno 2021-08-30 14:29 ` Jonathan Cameron 2021-08-30 15:02 ` Sa, Nuno 2021-09-01 8:12 ` Miquel Raynal 2021-09-04 14:06 ` Jonathan Cameron 2021-09-06 8:59 ` Sa, Nuno 2021-09-06 16:56 ` Jonathan Cameron 2021-09-06 17:34 ` Miquel Raynal 2021-08-30 10:06 ` Jonathan Cameron 2021-08-18 11:11 ` [PATCH 04/16] iio: adc: max1027: Lower conversion time Miquel Raynal 2021-08-20 7:12 ` Sa, Nuno 2021-08-30 10:10 ` Jonathan Cameron 2021-08-18 11:11 ` [PATCH 05/16] iio: adc: max1027: Drop extra warning message Miquel Raynal 2021-08-20 7:12 ` Sa, Nuno 2021-08-30 10:12 ` Jonathan Cameron 2021-08-18 11:11 ` [PATCH 06/16] iio: adc: max1027: Rename a helper Miquel Raynal 2021-08-20 7:13 ` Sa, Nuno 2021-08-18 11:11 ` [PATCH 07/16] iio: adc: max1027: Create a helper to configure the trigger Miquel Raynal 2021-08-20 7:16 ` Sa, Nuno 2021-08-30 10:16 ` Jonathan Cameron 2021-08-18 11:11 ` [PATCH 08/16] iio: adc: max1027: Explain better how the trigger state gets changed Miquel Raynal 2021-08-20 7:17 ` Sa, Nuno 2021-08-18 11:11 ` [PATCH 09/16] iio: adc: max1027: Create a helper to configure the channels to scan Miquel Raynal 2021-08-20 7:18 ` Sa, Nuno 2021-08-18 11:11 ` [PATCH 10/16] iio: adc: max1027: Prevent single channel accesses during buffer reads Miquel Raynal 2021-08-20 7:20 ` Sa, Nuno 2021-08-20 7:30 ` Sa, Nuno 2021-08-30 10:20 ` Jonathan Cameron 2021-09-02 8:56 ` Miquel Raynal 2021-08-18 11:11 ` [PATCH 11/16] iio: adc: max1027: Separate the IRQ handler from the read logic Miquel Raynal 2021-08-20 7:23 ` Sa, Nuno 2021-09-02 8:55 ` Miquel Raynal 2021-09-04 14:08 ` Jonathan Cameron 2021-08-18 11:11 ` [PATCH 12/16] iio: adc: max1027: Introduce an end of conversion helper Miquel Raynal 2021-08-20 7:28 ` Sa, Nuno 2021-09-02 9:26 ` Miquel Raynal 2021-08-30 10:34 ` Jonathan Cameron 2021-08-18 11:11 ` [PATCH 13/16] iio: adc: max1027: Prepare re-using the EOC interrupt Miquel Raynal 2021-08-20 7:31 ` Sa, Nuno 2021-08-30 10:30 ` Jonathan Cameron 2021-08-30 10:47 ` Jonathan Cameron 2021-08-18 11:11 ` [PATCH 14/16] iio: adc: max1027: Consolidate the end of conversion helper Miquel Raynal 2021-08-20 7:45 ` Sa, Nuno 2021-08-30 10:37 ` Jonathan Cameron 2021-08-30 12:44 ` Sa, Nuno 2021-08-30 14:32 ` Jonathan Cameron 2021-09-02 15:12 ` Miquel Raynal 2021-09-03 14:28 ` Sa, Nuno 2021-09-03 14:46 ` Miquel Raynal 2021-09-05 9:41 ` Jonathan Cameron 2021-09-06 9:12 ` Sa, Nuno 2021-09-06 9:30 ` Sa, Nuno 2021-08-18 11:11 ` [PATCH 15/16] iio: adc: max1027: Support software triggers Miquel Raynal 2021-08-20 7:58 ` Sa, Nuno 2021-09-02 12:25 ` Miquel Raynal 2021-09-03 14:20 ` Sa, Nuno 2021-08-30 10:50 ` Jonathan Cameron 2021-09-02 15:21 ` Miquel Raynal 2021-09-05 9:43 ` Jonathan Cameron 2021-08-18 11:11 ` [PATCH 16/16] iio: adc: max1027: Enable software triggers to be used without IRQ Miquel Raynal 2021-08-30 10:54 ` Jonathan Cameron [this message]
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20210830115425.3fdb31b9@jic23-huawei \ --to=jic23@kernel.org \ --cc=lars@metafoo.de \ --cc=linux-iio@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=miquel.raynal@bootlin.com \ --cc=thomas.petazzoni@bootlin.com \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).