Devicetree
 help / color / mirror / Atom feed
From: sashiko-bot@kernel.org
To: "Janani Sunil" <janani.sunil@analog.com>
Cc: robh@kernel.org, devicetree@vger.kernel.org, conor+dt@kernel.org
Subject: Re: [PATCH v7 07/17] iio: adc: ad7768: Add power mode helper
Date: Thu, 10 Sep 2026 17:48:02 +0000	[thread overview]
Message-ID: <20260910174802.EC76C1F000FF@smtp.kernel.org> (raw)
In-Reply-To: <20260910-ad7768-driver-v7-7-7f70b07627e1@analog.com>

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [High] Incorrect register value is written to the MCLK_DIV bitfield for MEDIAN power mode, leading to hardware and software clock divergence.
--

commit 52c81df3b6fbeb2c9857e18cf49af9fcfe8ebeae
Author: Janani Sunil <janani.sunil@analog.com>

iio: adc: ad7768: Add power mode helper

Describe each power mode and its internal master-clock divisor in a
table. Replace the open-coded fast-mode setup with a helper that records
the active mode, preparing for dynamic mode selection.

> diff --git a/drivers/iio/adc/ad7768.c b/drivers/iio/adc/ad7768.c
> index 44ba19fb20962..be815b8c6766e 100644
> --- a/drivers/iio/adc/ad7768.c
> +++ b/drivers/iio/adc/ad7768.c
[ ... ]
> @@ -102,6 +104,17 @@ enum ad7768_clock_source {
>  	AD7768_CLOCK_SOURCE_LVDS,
>  };
>  
> +struct ad7768_power_mode_info {
> +	unsigned int mode;
> +	unsigned int mclk_div;
> +};
> +
> +static const struct ad7768_power_mode_info ad7768_power_modes[] = {
> +	{ .mode = AD7768_POWER_MODE_POWER_MODE_LOW, .mclk_div = 32 },
> +	{ .mode = AD7768_POWER_MODE_POWER_MODE_MEDIAN, .mclk_div = 8 },
> +	{ .mode = AD7768_POWER_MODE_POWER_MODE_FAST, .mclk_div = 4 },
> +};
> +
[ ... ]
> @@ -330,6 +344,32 @@ static int ad7768_sync(struct ad7768_state *st)
>  			       AD7768_DATA_CONTROL_SPI_SYNC);
>  }
>  
> +static int ad7768_set_power_mode(struct ad7768_state *st,
> +				 unsigned int mode_idx)
> +{
> +	const struct ad7768_power_mode_info *mode_info;
> +	int ret;
> +
> +	mode_info = &ad7768_power_modes[mode_idx];
> +	ret = regmap_update_bits(st->regmap, AD7768_REG_POWER_MODE,
> +				 AD7768_POWER_MODE_POWER_MODE_MSK |
> +				 AD7768_POWER_MODE_MCLK_DIV_MSK,
> +				 FIELD_PREP(AD7768_POWER_MODE_POWER_MODE_MSK,
> +					    mode_info->mode) |
> +				 FIELD_PREP(AD7768_POWER_MODE_MCLK_DIV_MSK,
> +					    mode_info->mode));

[Severity: High]
When configuring MEDIAN mode via ad7768_set_power_mode(), does this code
inadvertently configure the MCLK_DIV bitfield using the power mode
register value instead of the correct clock divider register code?

For MEDIAN power mode, mode_info->mode is 0x2. Writing 0x2 to the MCLK_DIV
bitfield sets the hardware divider to 4 (MCLK/4), instead of the expected
divider of 8 (MCLK/8, which requires register value 0x1).

Since ad7768_power_modes correctly defines mclk_div = 8 for MEDIAN mode, the
software will calculate output rates and delays based on a divider of 8, while
the hardware runs twice as fast.

> +	if (ret)
> +		return ret;
> +
> +	ret = ad7768_sync(st);

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260910-ad7768-driver-v7-0-7f70b07627e1@analog.com?part=7

  reply	other threads:[~2026-09-10 17:48 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-10 17:36 [PATCH v7 00/17] iio: adc: Add AD7768/AD7768-4 ADC driver support Janani Sunil
2026-09-10 17:36 ` [PATCH v7 01/17] iio: adc: adi-axi-adc: Initialize state mutex Janani Sunil
2026-09-10 17:36 ` [PATCH v7 02/17] dt-bindings: iio: adc: Add AD7768 Janani Sunil
2026-09-10 17:43   ` sashiko-bot
2026-09-10 17:36 ` [PATCH v7 03/17] iio: backend: Add support for CRC Janani Sunil
2026-09-11  8:18   ` Andy Shevchenko
2026-09-10 17:36 ` [PATCH v7 04/17] iio: adc: adi-axi-adc: " Janani Sunil
2026-09-11  8:19   ` Andy Shevchenko
2026-09-10 17:36 ` [PATCH v7 05/17] iio: adc: Add AD7768 and AD7768-4 core support Janani Sunil
2026-09-10 17:56   ` sashiko-bot
2026-09-11  8:14   ` Andy Shevchenko
2026-09-13 20:51   ` Jonathan Cameron
2026-09-10 17:36 ` [PATCH v7 06/17] iio: adc: ad7768: Validate master clock rate Janani Sunil
2026-09-11  8:20   ` Andy Shevchenko
2026-09-10 17:36 ` [PATCH v7 07/17] iio: adc: ad7768: Add power mode helper Janani Sunil
2026-09-10 17:48   ` sashiko-bot [this message]
2026-09-11  8:20   ` Andy Shevchenko
2026-09-13 20:51   ` Jonathan Cameron
2026-09-10 17:36 ` [PATCH v7 08/17] iio: adc: ad7768: Derive output data rates Janani Sunil
2026-09-11  8:17   ` Andy Shevchenko
2026-09-10 17:36 ` [PATCH v7 09/17] iio: adc: ad7768: Configure channel sampling profiles Janani Sunil
2026-09-11 16:43   ` Andy Shevchenko
2026-09-10 17:36 ` [PATCH v7 10/17] iio: adc: ad7768: Add sampling frequency controls Janani Sunil
2026-09-10 17:36 ` [PATCH v7 11/17] iio: adc: ad7768: Add per-channel filter controls Janani Sunil
2026-09-10 17:36 ` [PATCH v7 12/17] iio: adc: ad7768: Wait for digital filters to settle Janani Sunil
2026-09-10 17:36 ` [PATCH v7 13/17] iio: adc: ad7768: Add calibration controls Janani Sunil
2026-09-10 17:36 ` [PATCH v7 14/17] iio: adc: ad7768: Add per-channel conversion delay Janani Sunil
2026-09-10 17:36 ` [PATCH v7 15/17] iio: adc: ad7768: Add VCM regulator support Janani Sunil
2026-09-10 17:36 ` [PATCH v7 16/17] iio: adc: ad7768: Register GPIO auxiliary device Janani Sunil
2026-09-11  7:41   ` Bartosz Golaszewski
2026-09-10 17:36 ` [PATCH v7 17/17] Documentation: iio: Add AD7768 Documentation Janani Sunil
2026-09-13 20:51 ` [PATCH v7 00/17] iio: adc: Add AD7768/AD7768-4 ADC driver support Jonathan Cameron

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=20260910174802.EC76C1F000FF@smtp.kernel.org \
    --to=sashiko-bot@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=janani.sunil@analog.com \
    --cc=robh@kernel.org \
    --cc=sashiko-reviews@lists.linux.dev \
    /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