From: Jonathan Cameron <jic23@kernel.org>
To: Radu Sabau via B4 Relay <devnull+radu.sabau.analog.com@kernel.org>
Cc: radu.sabau@analog.com, "Lars-Peter Clausen" <lars@metafoo.de>,
"Michael Hennerich" <Michael.Hennerich@analog.com>,
"Nuno Sá" <nuno.sa@analog.com>,
"David Lechner" <dlechner@baylibre.com>,
"Andy Shevchenko" <andy@kernel.org>,
linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org,
"Jonathan Cameron" <Jonathan.Cameron@huawei.com>
Subject: Re: [PATCH v3] iio: adc: ad4695: Fix call ordering in offload buffer postenable
Date: Sun, 12 Apr 2026 20:12:06 +0100 [thread overview]
Message-ID: <20260412201206.6f65e159@jic23-huawei> (raw)
In-Reply-To: <20260408-ad4696-fix-v3-1-37fe6e8d1d25@analog.com>
On Wed, 08 Apr 2026 13:32:13 +0300
Radu Sabau via B4 Relay <devnull+radu.sabau.analog.com@kernel.org> wrote:
> From: Radu Sabau <radu.sabau@analog.com>
>
> ad4695_enter_advanced_sequencer_mode() was called after
> spi_offload_trigger_enable(). That is wrong because
> ad4695_enter_advanced_sequencer_mode() issues regular SPI transfers to
> put the ADC into advanced sequencer mode, and not all SPI offload capable
> controllers support regular SPI transfers while offloading is enabled.
>
> Fix this by calling ad4695_enter_advanced_sequencer_mode() before
> spi_offload_trigger_enable(), so the ADC is fully configured before the
> first CNV pulse can occur. This is consistent with the same constraint
> that already applies to the BUSY_GP_EN write above it.
>
> Update the error unwind labels accordingly: add err_exit_conversion_mode
> so that a failure of spi_offload_trigger_enable() correctly exits
> conversion mode before clearing BUSY_GP_EN.
>
> Fixes: f09f140e3ea8 ("iio: adc: ad4695: Add support for SPI offload")
> Reviewed-by: Nuno Sá <nuno.sa@analog.com>
> Reviewed-by: David Lechner <dlechner@baylibre.com>
> Signed-off-by: Radu Sabau <radu.sabau@analog.com>
Applied to the fixes-togreg branch of iio.git and marked for stable.
Note I'll almost certainly rebase that branch on rc1 once available
rather than doing a final fixes pull request this cycle.
Thanks,
Jonathan
> ---
> ad4695_enter_advanced_sequencer_mode() issues regular SPI transfers to
> configure the ADC. These must complete before spi_offload_trigger_enable()
> enables the PWM/CNV trigger, because once CNV pulses are live the offload
> engine owns the SPI bus.
>
> This fixes the call ordering and updates the error unwind path accordingly.
> ---
> Changes in v3:
> - Reword commit message: "the offload engine owns the SPI bus; any
> concurrent regular SPI transfer produces undefined behaviour" →
> "not all SPI offload capable controllers support regular SPI
> transfers while offloading is enabled".
> - Rename err_trigger_disable → err_offload_trigger_disable to reduce
> diff churn.
> - Link to v2: https://lore.kernel.org/r/20260401-ad4696-fix-v2-1-2480b9a30749@analog.com
>
> Changes in v2:
> - Reword commit message to explain the correct bus-ownership
> invariant directly, without reference to the HDL bug that
> exposed it.
> - Remove unnecessary comment since the error path changed.
> - Link to v1: https://lore.kernel.org/r/20260330-ad4696-fix-v1-1-e841e96451b2@analog.com
> ---
> drivers/iio/adc/ad4695.c | 23 ++++++++---------------
> 1 file changed, 8 insertions(+), 15 deletions(-)
>
> diff --git a/drivers/iio/adc/ad4695.c b/drivers/iio/adc/ad4695.c
> index cda419638d9a..53642de7330d 100644
> --- a/drivers/iio/adc/ad4695.c
> +++ b/drivers/iio/adc/ad4695.c
> @@ -876,14 +876,14 @@ static int ad4695_offload_buffer_postenable(struct iio_dev *indio_dev)
> if (ret)
> goto err_unoptimize_message;
>
> - ret = spi_offload_trigger_enable(st->offload, st->offload_trigger,
> - &config);
> + ret = ad4695_enter_advanced_sequencer_mode(st, num_slots);
> if (ret)
> goto err_disable_busy_output;
>
> - ret = ad4695_enter_advanced_sequencer_mode(st, num_slots);
> + ret = spi_offload_trigger_enable(st->offload, st->offload_trigger,
> + &config);
> if (ret)
> - goto err_offload_trigger_disable;
> + goto err_exit_conversion_mode;
>
> mutex_lock(&st->cnv_pwm_lock);
> pwm_get_state(st->cnv_pwm, &state);
> @@ -895,23 +895,16 @@ static int ad4695_offload_buffer_postenable(struct iio_dev *indio_dev)
> ret = pwm_apply_might_sleep(st->cnv_pwm, &state);
> mutex_unlock(&st->cnv_pwm_lock);
> if (ret)
> - goto err_offload_exit_conversion_mode;
> + goto err_offload_trigger_disable;
>
> return 0;
>
> -err_offload_exit_conversion_mode:
> - /*
> - * We have to unwind in a different order to avoid triggering offload.
> - * ad4695_exit_conversion_mode() triggers a conversion, so it has to be
> - * done after spi_offload_trigger_disable().
> - */
> - spi_offload_trigger_disable(st->offload, st->offload_trigger);
> - ad4695_exit_conversion_mode(st);
> - goto err_disable_busy_output;
> -
> err_offload_trigger_disable:
> spi_offload_trigger_disable(st->offload, st->offload_trigger);
>
> +err_exit_conversion_mode:
> + ad4695_exit_conversion_mode(st);
> +
> err_disable_busy_output:
> regmap_clear_bits(st->regmap, AD4695_REG_GP_MODE,
> AD4695_REG_GP_MODE_BUSY_GP_EN);
>
> ---
> base-commit: 11439c4635edd669ae435eec308f4ab8a0804808
> change-id: 20260330-ad4696-fix-186955a8c511
>
> Best regards,
prev parent reply other threads:[~2026-04-12 19:12 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-08 10:32 [PATCH v3] iio: adc: ad4695: Fix call ordering in offload buffer postenable Radu Sabau via B4 Relay
2026-04-12 19:12 ` 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=20260412201206.6f65e159@jic23-huawei \
--to=jic23@kernel.org \
--cc=Jonathan.Cameron@huawei.com \
--cc=Michael.Hennerich@analog.com \
--cc=andy@kernel.org \
--cc=devnull+radu.sabau.analog.com@kernel.org \
--cc=dlechner@baylibre.com \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nuno.sa@analog.com \
--cc=radu.sabau@analog.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: link
Be 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