From: Nishanth Menon <nm@ti.com>
To: Mark Brown <broonie@kernel.org>
Cc: Arnd Bergmann <arnd@arndb.de>, Lee Jones <lee@kernel.org>,
<linux-arm-kernel@lists.infradead.org>,
<linux-kernel@vger.kernel.org>, <afd@ti.com>, <bb@ti.com>,
<d-gole@ti.com>,
Jan Dakinevich <jan.dakinevich@salutedevices.com>
Subject: Re: [PATCH] mfd: syscon: Set max_register_is_0 when syscon points to a single register
Date: Wed, 28 Aug 2024 08:32:29 -0500 [thread overview]
Message-ID: <20240828133229.67bej3utpgrmzr3p@retired> (raw)
In-Reply-To: <f72500a5-4514-4920-a7f0-3fc8e6874615@sirena.org.uk>
On 13:57-20240828, Mark Brown wrote:
> On Wed, Aug 28, 2024 at 07:10:08AM -0500, Nishanth Menon wrote:
>
> > Commit 0ec74ad3c157 ("regmap: rework ->max_register handling")
> > introduced explicit handling in regmap framework for register maps
> > that is exactly 1 register wide. As a result, a syscon pointing
> > to a single register would cause regmap checks to skip checks
> > (or in the case of regmap_get_max_register, return -EINVAL) as
> > max_register_is_set will not be true.
>
> In what sense is the behaviour changed for a map that doesn't specify a
> maximum register?
>
> > Fixes: 0ec74ad3c157 ("regmap: rework ->max_register handling")
>
> In what sense is this a fix?
The max_register was 0x0 was clearly a corner case. The fix done for
remap should have cleaned up the users of max_register to maintain the
behavior. That is just my opinion.
>
> > + if (!syscon_config.max_register)
> > + syscon_config.max_register_is_0 = true;
>
> This will cause any syscon which does not explicitly specify a maximum
> register to be converted to having only one register at number 0. That
The context of the diff is important - code above already sets
the max_register as syscon_config.max_register = resource_size(&res) -
reg_io_width;
So it already does set the max_register. syscon does'nt explictly set a
max_reg - it is derived from the resource_size.
> really does not seem like a good idea - unless you've done an audit of
> every single syscon to make sure they do explicitly specify a maximum
> register, and confirmed that this can't be specified via DT, then it's
> going to break things.
I understand the risk - but having a consistent max_register definition
is important - key here is that in regmap, max_register is valid if:
a) max_register not being 0
b) if max_register is 0, it is valid only if max_register_is_0 is set to
true.
When syscon sets the max_register, it operates correctly for num_reg > 1
however, when reg_size == 1, you don't get the checks that you
get when num_regs > 1. That is inconsistent behavior.
It might help if you can clarify why you think an inconsistent behavior
is correct for syscon?
--
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D
next prev parent reply other threads:[~2024-08-28 13:34 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-28 12:10 [PATCH] mfd: syscon: Set max_register_is_0 when syscon points to a single register Nishanth Menon
2024-08-28 12:57 ` Mark Brown
2024-08-28 13:32 ` Nishanth Menon [this message]
2024-08-28 14:27 ` Mark Brown
2024-08-28 14:44 ` Nishanth Menon
2024-08-28 20:26 ` Mark Brown
2024-08-29 5:04 ` Nishanth Menon
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=20240828133229.67bej3utpgrmzr3p@retired \
--to=nm@ti.com \
--cc=afd@ti.com \
--cc=arnd@arndb.de \
--cc=bb@ti.com \
--cc=broonie@kernel.org \
--cc=d-gole@ti.com \
--cc=jan.dakinevich@salutedevices.com \
--cc=lee@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.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