From: Philipp Zabel <p.zabel@pengutronix.de>
To: Jerome Brunet <jbrunet@baylibre.com>
Cc: Stephen Boyd <sboyd@kernel.org>,
Neil Armstrong <neil.armstrong@linaro.org>,
Kevin Hilman <khilman@baylibre.com>,
Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
Jiucheng Xu <jiucheng.xu@amlogic.com>,
linux-arm-kernel@lists.infradead.org,
linux-amlogic@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v4 1/9] reset: amlogic: convert driver to regmap
Date: Tue, 10 Sep 2024 10:20:44 +0200 [thread overview]
Message-ID: <86eebdd7435ec1dc09765f4c4f8cb5ba8d20d785.camel@pengutronix.de> (raw)
In-Reply-To: <1jfrqcrgab.fsf@starbuckisacylon.baylibre.com>
On Fr, 2024-09-06 at 16:46 +0200, Jerome Brunet wrote:
> On Fri 06 Sep 2024 at 16:19, Philipp Zabel <p.zabel@pengutronix.de> wrote:
> > On Fr, 2024-09-06 at 15:34 +0200, Jerome Brunet wrote:
[...]
> > > +static void meson_reset_offset_and_bit(struct meson_reset *data,
> > > + unsigned long id,
> > > + unsigned int *offset,
> > > + unsigned int *bit)
> > > +{
> > > + unsigned int stride = regmap_get_reg_stride(data->map);
> >
> > You know this is always 4. Having a #define for this (that is also used
> > to initialize regmap_config.reg_stride, and for now nr_resets, below)
> > instead of going through an exported function would allow the compiler
> > to optimize this all away:
>
> Yes, for now. However, with the auxiliary you may get a regmap with
> different value. I've seen example with stride = 1.
>
> I'll admit is very unlikely but I does not really worth it considering
> how often we'll get through this and how difficult it will be to debug
> if stride ever get different.
Oh right, the aux regmap being passed in from the outside in a later
patch invalidates my point.
[...]
> > > @@ -48,25 +55,13 @@ static int meson_reset_level(struct reset_controller_dev *rcdev,
> > > {
> > > struct meson_reset *data =
> > > container_of(rcdev, struct meson_reset, rcdev);
> > > - unsigned int bank = id / BITS_PER_REG;
> > > - unsigned int offset = id % BITS_PER_REG;
> > > - void __iomem *reg_addr;
> > > - unsigned long flags;
> > > - u32 reg;
> > > + unsigned int offset, bit;
> > >
> > > - reg_addr = data->reg_base + data->param->level_offset + (bank << 2);
> > > + meson_reset_offset_and_bit(data, id, &offset, &bit);
> > > + offset += data->param->level_offset;
> > >
> > > - spin_lock_irqsave(&data->lock, flags);
> > > -
> > > - reg = readl(reg_addr);
> > > - if (assert)
> > > - writel(reg & ~BIT(offset), reg_addr);
> > > - else
> > > - writel(reg | BIT(offset), reg_addr);
> > > -
> > > - spin_unlock_irqrestore(&data->lock, flags);
> > > -
> > > - return 0;
> > > + return regmap_update_bits(data->map, offset,
> > > + BIT(bit), assert ? 0 : BIT(bit));
> >
> > Matter of taste, perhaps, but the BIT() could be moved into
> > meson_reset_offset_and_bit().
>
> It's not really related to this particular patch which is about moving
> to regmap.
>
> I can add it to another patch if you want
Either way is fine.
regards
Philipp
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
next prev parent reply other threads:[~2024-09-10 8:21 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-06 13:34 [PATCH v4 0/9] reset: amlogic: move audio reset drivers out of CCF Jerome Brunet
2024-09-06 13:34 ` [PATCH v4 1/9] reset: amlogic: convert driver to regmap Jerome Brunet
2024-09-06 14:19 ` Philipp Zabel
2024-09-06 14:46 ` Jerome Brunet
2024-09-10 8:20 ` Philipp Zabel [this message]
2024-09-06 13:34 ` [PATCH v4 2/9] reset: amlogic: use generic data matching function Jerome Brunet
2024-09-06 13:34 ` [PATCH v4 3/9] reset: amlogic: make parameters unsigned Jerome Brunet
2024-09-06 13:34 ` [PATCH v4 4/9] reset: amlogic: add driver parameters Jerome Brunet
2024-09-06 13:34 ` [PATCH v4 5/9] reset: amlogic: use reset number instead of register count Jerome Brunet
2024-09-06 13:34 ` [PATCH v4 6/9] reset: amlogic: add reset status support Jerome Brunet
2024-09-06 13:34 ` [PATCH v4 7/9] reset: amlogic: move drivers to a dedicated directory Jerome Brunet
2024-09-06 13:34 ` [PATCH v4 8/9] reset: amlogic: split the device core and platform probe Jerome Brunet
2024-09-06 13:34 ` [PATCH v4 9/9] reset: amlogic: add auxiliary reset driver support Jerome Brunet
2024-09-09 16:42 ` kernel test robot
2024-09-09 17:31 ` Jerome Brunet
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=86eebdd7435ec1dc09765f4c4f8cb5ba8d20d785.camel@pengutronix.de \
--to=p.zabel@pengutronix.de \
--cc=jbrunet@baylibre.com \
--cc=jiucheng.xu@amlogic.com \
--cc=khilman@baylibre.com \
--cc=linux-amlogic@lists.infradead.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=martin.blumenstingl@googlemail.com \
--cc=neil.armstrong@linaro.org \
--cc=sboyd@kernel.org \
/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