Linux IIO development
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: "Matti Vaittinen" <mazziesaccount@gmail.com>,
	"Matti Vaittinen" <matti.vaittinen@fi.rohmeurope.com>,
	"Lars-Peter Clausen" <lars@metafoo.de>,
	"Nuno Sa" <nuno.sa@analog.com>,
	"David Lechner" <dlechner@baylibre.com>,
	"Javier Carrasco" <javier.carrasco.cruz@gmail.com>,
	"Olivier Moysan" <olivier.moysan@foss.st.com>,
	"Guillaume Stols" <gstols@baylibre.com>,
	"Dumitru Ceclan" <mitrutzceclan@gmail.com>,
	"Trevor Gamblin" <tgamblin@baylibre.com>,
	"Matteo Martelli" <matteomartelli3@gmail.com>,
	"Alisa-Dariana Roman" <alisadariana@gmail.com>,
	"João Paulo Gonçalves" <joao.goncalves@toradex.com>,
	"AngeloGioacchino Del Regno"
	<angelogioacchino.delregno@collabora.com>,
	linux-kernel@vger.kernel.org, linux-iio@vger.kernel.org
Subject: Re: [PATCH v7 06/10] iio: adc: Support ROHM BD79124 ADC
Date: Sun, 16 Mar 2025 10:01:23 +0000	[thread overview]
Message-ID: <20250316100123.4fa32464@jic23-huawei> (raw)
In-Reply-To: <20250316095233.20d1a134@jic23-huawei>

On Sun, 16 Mar 2025 09:52:33 +0000
Jonathan Cameron <jic23@kernel.org> wrote:

> On Fri, 14 Mar 2025 16:33:13 +0200
> Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote:
> 
> > On Fri, Mar 14, 2025 at 09:31:58AM +0200, Matti Vaittinen wrote:  
> > > On 13/03/2025 15:19, Andy Shevchenko wrote:    
> > > > On Thu, Mar 13, 2025 at 09:19:03AM +0200, Matti Vaittinen wrote:    
> > 
> > ...  
> Picking out a few things to comment on...
> >   
> > > > > +#define BD79124_MASK_HYSTERESIS GENMASK(3, 0)
> > > > > +#define BD79124_LOW_LIMIT_MIN 0
> > > > > +#define BD79124_HIGH_LIMIT_MAX GENMASK(11, 0)    
> > > > 
> > > > These masks are not named after registers (or I don't see it clearly),    
> > > 
> > > Naming is hard. I usually try to make a balance between:
> > > 
> > > 1) using names which explain the purpose when seen in the code (at call
> > > site)
> > > 2) keeping names short enough
> > > 3) following the naming convention in the data sheet
> > > 4) maintain relation to the register.
> > > 
> > > I put most emphasis to the 1, while 2 is important to me as well. 3 is
> > > _very_ nice to have, but it is often somehow contradicting with 1 and 2. 4
> > > is IMO just nice to have. The register is usually clearly visible at call
> > > site, and if someone adds new functionality (or checks the correctness of
> > > the masks/registers), then 3 is way more important.
> > > 
> > > I am open to any concrete suggestions though.    
> > 
> > From my point of view the starting point is 3, then one may apply 2 and 4,
> > the 1 may mangle the name so much that register data field name becomes quite
> > abstract.
> >   
> > > > it's
> > > > hard to understand which one relates to which register. Also, why not using
> > > > bitfield.h?    
> > > 
> > > I saw no need for it?    
> > 
> > Hmm... Okay, I think Jonathan will ask that if really needed.
> >   
> 
> I won't as I'm not a huge fan of bitfield.h. In many cases they bloat the code

Oops. You weren't talking about the regmap bitfields.  Ignore this.
This driver is using FIELD_PREP / FIELD_GET.  Maybe should be more extensive?

> and increase the writes that go over the bus.  Don't get me wrong, there
> are good usecases, but it's not a universal thing (unlike PREP_FIELD()
> etc which I love :)
> 
> I do favour burning a few characters to make field / register relationship
> clear though.  A few things can help I think.
> 
> Structuring defines and naming:
> I like using whitespace in subtle ways for this.
> 
> #define PREFIX_REGNAME_REG				0x00
> #define  PREFIX_REGNAME_FIELDNAME_MSK			GENMASK(X, Y)
> #define  PREFIX_REGNAME_FIELDNAME_FILEVALNAME  		0x3
> etc
> 
> Makes it easy to see if we have a mismatch going on
> 
> However, I don't insist on this in all cases as it is one of those
> "don't let perfect be the enemy of good" cases I think.
> 
> So Matti, good to have one last look at the defines and see if they
> can be wrangled into a slightly better form.
> 
> 
> .
> > ...
> >   
> > > > > +static void bd79124gpo_set_multiple(struct gpio_chip *gc, unsigned long *mask,
> > > > > +				    unsigned long *bits)    
> > > > 
> > > > Ditto, .set_multiple_rv().    
> > > 
> > > As you know, this started at v6.14 cycle which is still ongoing. I don't
> > > think .set_rv() and .set_multiple_rv() are available?    
> > 
> > You mean that you are still hope to have this series to be squeezed for
> > v6.15-rc1? That's not me who decides, but if not, those APIs will be part of
> > the v6.15-rc1 (at least they are pending in GPIO subsystem).
> >   
> I'd vote for a rebase on rc1 that should be really easy to for me to pick
> up.   I'd accept a follow up series though.   Ultimately won't affect
> when this series lands as very unlikely Linus will delay the release
> long enough for me to do another pull request this cycle,
> 
> Jonathan


  reply	other threads:[~2025-03-16 10:01 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-13  7:16 [PATCH v7 00/10] Support ROHM BD79124 ADC Matti Vaittinen
2025-03-13  7:17 ` [PATCH v7 01/10] dt-bindings: ROHM BD79124 ADC/GPO Matti Vaittinen
2025-03-13  7:18 ` [PATCH v7 02/10] property: Add functions to iterate named child Matti Vaittinen
2025-03-13 12:15   ` Andy Shevchenko
2025-03-16 21:45   ` Marcelo Schmitt
2025-03-13  7:18 ` [PATCH v7 03/10] iio: adc: add helpers for parsing ADC nodes Matti Vaittinen
2025-03-13 12:31   ` Andy Shevchenko
2025-03-13 13:17     ` Matti Vaittinen
2025-03-13 13:29       ` Andy Shevchenko
2025-03-16  9:38   ` Jonathan Cameron
2025-03-17  8:22     ` Matti Vaittinen
2025-03-13  7:18 ` [PATCH v7 04/10] iio: adc: rzg2l_adc: Use adc-helpers Matti Vaittinen
2025-03-13  7:18 ` [PATCH v7 05/10] iio: adc: sun20i-gpadc: " Matti Vaittinen
2025-03-13 12:34   ` Andy Shevchenko
2025-03-16  9:41     ` Jonathan Cameron
2025-03-17  7:11       ` Matti Vaittinen
2025-03-17  7:51         ` Andy Shevchenko
2025-03-17  8:42           ` Matti Vaittinen
2025-03-17  9:27             ` Andy Shevchenko
2025-03-17 10:45               ` Jonathan Cameron
2025-03-13  7:19 ` [PATCH v7 06/10] iio: adc: Support ROHM BD79124 ADC Matti Vaittinen
2025-03-13 13:19   ` Andy Shevchenko
2025-03-14  7:31     ` Matti Vaittinen
2025-03-14  8:52       ` Matti Vaittinen
2025-03-14 14:33       ` Andy Shevchenko
2025-03-16  9:52         ` Jonathan Cameron
2025-03-16 10:01           ` Jonathan Cameron [this message]
2025-03-17  6:52           ` Matti Vaittinen
2025-03-17 10:52             ` Jonathan Cameron
2025-03-14  9:22     ` Matti Vaittinen
2025-03-14 14:37       ` Andy Shevchenko
2025-03-17  7:07         ` Matti Vaittinen
2025-03-17  7:57           ` Andy Shevchenko
2025-03-17  8:33             ` Matti Vaittinen
2025-03-16 11:02   ` Jonathan Cameron
2025-03-17  7:34     ` Matti Vaittinen
2025-03-17 11:24     ` Matti Vaittinen
2025-03-30 16:04       ` Jonathan Cameron
2025-03-31  7:37         ` Andy Shevchenko
2025-03-31  7:51           ` Matti Vaittinen
2025-03-13  7:19 ` [PATCH v7 07/10] MAINTAINERS: Add IIO ADC helpers Matti Vaittinen
2025-03-13  7:19 ` [PATCH v7 08/10] MAINTAINERS: Add ROHM BD79124 ADC/GPO Matti Vaittinen

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=20250316100123.4fa32464@jic23-huawei \
    --to=jic23@kernel.org \
    --cc=alisadariana@gmail.com \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=dlechner@baylibre.com \
    --cc=gstols@baylibre.com \
    --cc=javier.carrasco.cruz@gmail.com \
    --cc=joao.goncalves@toradex.com \
    --cc=lars@metafoo.de \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=matteomartelli3@gmail.com \
    --cc=matti.vaittinen@fi.rohmeurope.com \
    --cc=mazziesaccount@gmail.com \
    --cc=mitrutzceclan@gmail.com \
    --cc=nuno.sa@analog.com \
    --cc=olivier.moysan@foss.st.com \
    --cc=tgamblin@baylibre.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