public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
From: Andy Shevchenko <andriy.shevchenko@intel.com>
To: Rodrigo Alencar <455.rodrigo.alencar@gmail.com>
Cc: rodrigo.alencar@analog.com, linux-kernel@vger.kernel.org,
	linux-iio@vger.kernel.org, devicetree@vger.kernel.org,
	linux-doc@vger.kernel.org, Jonathan Cameron <jic23@kernel.org>,
	David Lechner <dlechner@baylibre.com>,
	Andy Shevchenko <andy@kernel.org>,
	Lars-Peter Clausen <lars@metafoo.de>,
	Michael Hennerich <Michael.Hennerich@analog.com>,
	Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Jonathan Corbet <corbet@lwn.net>
Subject: Re: [PATCH v4 3/7] iio: frequency: adf41513: driver implementation
Date: Mon, 19 Jan 2026 15:42:34 +0200	[thread overview]
Message-ID: <aW40ylvMwVhqNQMw@smile.fi.intel.com> (raw)
In-Reply-To: <texwv5s2tvcy34bwr4iruj5xofmea663pwletmpqpuh66zulmv@m7qvjgqbhalv>

On Mon, Jan 19, 2026 at 11:21:59AM +0000, Rodrigo Alencar wrote:
> On 26/01/19 09:31AM, Andy Shevchenko wrote:
> > On Fri, Jan 16, 2026 at 02:32:22PM +0000, Rodrigo Alencar via B4 Relay wrote:

...

> > > +struct adf41513_pll_settings {
> > > +	enum adf41513_pll_mode mode;
> > 
> > Sounds to me like a room to improve the layout here,
> 
> I am targeting a 32-bit cpu, just moved in_value down:
> would this be fine? (pahole output):

Likely.

> struct adf41513_pll_settings {
>         enum adf41513_pll_mode     mode;                 /*     0     4 */

Wondering if this can be shorter if moved down...

>         u8                         r_counter;            /*     4     1 */
>         u8                         ref_doubler;          /*     5     1 */
>         u8                         ref_div2;             /*     6     1 */
>         u8                         prescaler;            /*     7     1 */
>         u64                        target_frequency_uhz; /*     8     8 */
>         u64                        actual_frequency_uhz; /*    16     8 */
>         u64                        pfd_frequency_uhz;    /*    24     8 */
>         u32                        frac1;                /*    32     4 */
>         u32                        frac2;                /*    36     4 */
>         u32                        mod2;                 /*    40     4 */
>         u16                        int_value;            /*    44     2 */
> 
>         /* size: 48, cachelines: 1, members: 12 */
>         /* padding: 2 */
>         /* last cacheline: 48 bytes */
> };

...at least I have had in mind that "mode" should be moved to be near
to "int_value". But I think it will take 4 bytes still as we don't use
short enums compile wise.

> > > +	/* reference path parameters */
> > > +	u8 r_counter;
> > > +	u8 ref_doubler;
> > > +	u8 ref_div2;
> > > +	u8 prescaler;
> > > +
> > > +	/* frequency parameters */
> > > +	u64 target_frequency_uhz;
> > > +	u64 actual_frequency_uhz;
> > > +	u64 pfd_frequency_uhz;
> > > +
> > > +	/* pll parameters */
> > > +	u16 int_value;
> > > +	u32 frac1;
> > > +	u32 frac2;
> > > +	u32 mod2;
> > > +};

...

> > > +static int adf41513_parse_uhz(const char *str, u64 *freq_uhz)
> > > +{
> > > +	u64 uhz = 0;
> > > +	int f_count = ADF41513_HZ_DECIMAL_PRECISION;
> > > +	bool frac_part = false;
> > > +
> > > +	if (str[0] == '+')
> > > +		str++;
> > > +
> > > +	while (*str && f_count > 0) {
> > > +		if ('0' <= *str && *str <= '9') {
> > > +			uhz = uhz * 10 + *str - '0';
> > > +			if (frac_part)
> > > +				f_count--;
> > > +		} else if (*str == '\n') {
> > > +			if (*(str + 1) == '\0')
> > > +				break;
> > > +			return -EINVAL;
> > 
> > > +		} else if (*str == '.' && !frac_part) {
> > 
> > This can be found by strchr() / strrchr() (depending on the expectations of
> > the input).
> > 
> > > +			frac_part = true;
> > > +		} else {
> > > +			return -EINVAL;
> > > +		}
> > > +		str++;
> > > +	}
> > 
> > With the above the rest becomes just a couple of simple_strtoull() calls with
> > a couple of int_pow(10) calls (and some validation on top).
> > 
> > > +	for (; f_count > 0; f_count--)
> > > +		uhz *= 10;
> > 
> > This is int_pow(10).
> > 
> > > +	*freq_uhz = uhz;
> > > +
> > > +	return 0;
> > > +}
> 
> The current implementation is kind of a stripped version of
> __iio_str_to_fixpoint(). Would you prefer something like this, then?:

Do they have most of the parts in common? If so, why can't we use
__iio_str_to_fixpoint() directly? Or why can't we slightly refactor
that to give us the results we need here?

> static int adf41513_parse_uhz(const char *str, u64 *freq_uhz)
> {
> 	u64 integer_part = 0, fractional_part = 0;
> 	const char *decimal_point;
> 	char *endptr;
> 	int frac_digits;
> 
> 	if (str[0] == '+')
> 	str++;
> 
> 	/* Find decimal point */
> 	decimal_point = strchr(str, '.');
> 	if (decimal_point) {

> 		/* Parse integer part (if exists before decimal point) */
> 		if (decimal_point > str) {

I don't think you need this check, simple_strtoull() should return 0.

Also check the ranges, perhaps you want in some cases simple_strtoul().

> 			integer_part = simple_strtoull(str, &endptr, 10);
> 			if (endptr != decimal_point)
> 				return -EINVAL;
> 		}
> 
> 		/* Parse fractional part */
> 		fractional_part = simple_strtoull(decimal_point + 1, &endptr, 10);

The idea of using the simple strtoull() (second "l") is to check for overflows,
so if the number is > UINT_MAX we probably should return -ERANGE.

We have somewhere already such a code in the kernel, maybe it's a time to have
advanced version of simple_strtouint().

drivers/crypto/intel/qat/qat_common/qat_uclo.c:206:     ae = simple_strtoull(str, &end, 10);
drivers/crypto/intel/qat/qat_common/qat_uclo.c-207-     if (ae > UINT_MAX || str == end || (end - str) > 19)
drivers/crypto/intel/qat/qat_common/qat_uclo.c-208-             return -EINVAL;

> 		if (*endptr != '\0' && *endptr != '\n')
> 			return -EINVAL;
> 
> 		/* Adjust for desired precision */

> 		frac_digits = strcspn(decimal_point + 1, "\n");

This is already precalculated: endptr - decimal_point (+ 1 ?).

> 		if (frac_digits > ADF41513_HZ_DECIMAL_PRECISION)
> 			fractional_part /= int_pow(10, frac_digits - ADF41513_HZ_DECIMAL_PRECISION);
> 		else
> 			fractional_part *= int_pow(10, ADF41513_HZ_DECIMAL_PRECISION - frac_digits);
> 	} else {
> 		/* No decimal point - just parse the integer */
> 		ret = kstrtoull(str, 10, &integer_part);
> 		if (ret)
> 			return ret;
> 	}
> 
> 	/* Combine integer and fractional parts */
> 	*freq_uhz = integer_part * int_pow(10, ADF41513_HZ_DECIMAL_PRECISION) + fractional_part;
> 
> 	return 0;
> }

...

> > > +static int adf41513_uhz_to_str(u64 freq_uhz, char *buf)
> > > +{
> > > +	u32 frac_part;
> > > +	u64 int_part = div_u64_rem(freq_uhz, MICRO, &frac_part);
> > 
> > Perhaps MICROHZ_PER_HZ? This will be consistent with the int_value in
> > _calc_*() below.
> 
> Here, the meaning is different. int_part is in Hz and frac_part in uHz.
> Will add the suffixes to the variables.

Yes, but here it's a constant divisor, and not a multiplier.
Meaning that one divides µHz by µHz.

> > > +	return sysfs_emit(buf, "%llu.%06u\n", int_part, frac_part);
> > > +}

-- 
With Best Regards,
Andy Shevchenko



  reply	other threads:[~2026-01-19 13:42 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-16 14:32 [PATCH v4 0/7] ADF41513/ADF41510 PLL frequency synthesizers Rodrigo Alencar via B4 Relay
2026-01-16 14:32 ` [PATCH v4 1/7] dt-bindings: iio: frequency: add adf41513 Rodrigo Alencar via B4 Relay
2026-01-16 14:35   ` Krzysztof Kozlowski
2026-01-16 14:32 ` [PATCH v4 2/7] units: Add HZ_PER_GHZ definition Rodrigo Alencar via B4 Relay
2026-01-16 15:26   ` Andy Shevchenko
2026-01-16 19:01     ` Jonathan Cameron
2026-01-16 14:32 ` [PATCH v4 3/7] iio: frequency: adf41513: driver implementation Rodrigo Alencar via B4 Relay
2026-01-16 19:29   ` Jonathan Cameron
2026-01-19 13:10     ` Rodrigo Alencar
2026-01-19  7:31   ` Andy Shevchenko
2026-01-19 11:21     ` Rodrigo Alencar
2026-01-19 13:42       ` Andy Shevchenko [this message]
2026-01-19 16:37         ` Rodrigo Alencar
2026-01-19 17:07           ` Andy Shevchenko
2026-01-20 10:43             ` Rodrigo Alencar
2026-01-20 11:24               ` Andy Shevchenko
2026-01-20 13:07                 ` Rodrigo Alencar
2026-01-20 13:38                   ` Andy Shevchenko
2026-01-21  9:41                     ` Rodrigo Alencar
2026-01-21  9:52                       ` Andy Shevchenko
2026-01-21 14:21                         ` Nuno Sá
2026-01-22 19:33                           ` Jonathan Cameron
2026-01-16 14:32 ` [PATCH v4 4/7] iio: frequency: adf41513: handle LE synchronization feature Rodrigo Alencar via B4 Relay
2026-01-16 14:32 ` [PATCH v4 5/7] iio: frequency: adf41513: features on frequency change Rodrigo Alencar via B4 Relay
2026-01-16 15:36   ` Andy Shevchenko
2026-01-16 14:32 ` [PATCH v4 6/7] docs: iio: add documentation for adf41513 driver Rodrigo Alencar via B4 Relay
2026-01-16 14:32 ` [PATCH v4 7/7] Documentation: ABI: testing: add common ABI file for iio/frequency Rodrigo Alencar via B4 Relay
2026-01-16 15:28   ` Andy Shevchenko

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=aW40ylvMwVhqNQMw@smile.fi.intel.com \
    --to=andriy.shevchenko@intel.com \
    --cc=455.rodrigo.alencar@gmail.com \
    --cc=Michael.Hennerich@analog.com \
    --cc=andy@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=corbet@lwn.net \
    --cc=devicetree@vger.kernel.org \
    --cc=dlechner@baylibre.com \
    --cc=jic23@kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=lars@metafoo.de \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robh@kernel.org \
    --cc=rodrigo.alencar@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