From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Waqar Hameed <waqar.hameed@axis.com>
Cc: Mark Brown <broonie@kernel.org>,
"Rafael J. Wysocki" <rafael@kernel.org>,
kernel@axis.com, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] regmap: Add debugfs file for forcing field writes
Date: Tue, 13 Jun 2023 17:02:27 +0200 [thread overview]
Message-ID: <2023061322-garter-linseed-6dfe@gregkh> (raw)
In-Reply-To: <pnd1qifa7sj.fsf@axis.com>
On Tue, Jun 13, 2023 at 01:42:27PM +0200, Waqar Hameed wrote:
> `_regmap_update_bits()` checks if the current register value differs
> from the new value, and only writes to the register if they differ. When
> testing hardware drivers, it might be desirable to always force a
> register write, for example when writing to a `regmap_field`. This
> enables and simplifies testing and verification of the hardware
> interaction. For example, when using a hardware mock/simulation model,
> one can then more easily verify that the driver makes the correct
> expected register writes during certain events.
>
> Add a bool variable `force_write_field` and a corresponding debugfs
> entry to enable this. Since this feature could interfere with driver
> operation, guard it with a macro.
>
> Signed-off-by: Waqar Hameed <waqar.hameed@axis.com>
> ---
> Changes in v2:
> * Add macro to guard the debugfs entry.
> * Fix `Signed-off-by` in commit message to match actual email address.
> * Link to v1: https://lore.kernel.org/all/pndttvcu3ut.fsf@axis.com/
>
> drivers/base/regmap/internal.h | 3 +++
> drivers/base/regmap/regmap-debugfs.c | 11 +++++++++++
> drivers/base/regmap/regmap.c | 2 +-
> 3 files changed, 15 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/base/regmap/internal.h b/drivers/base/regmap/internal.h
> index 9bd0dfd1e259..6472b3222b82 100644
> --- a/drivers/base/regmap/internal.h
> +++ b/drivers/base/regmap/internal.h
> @@ -125,6 +125,9 @@ struct regmap {
> int reg_stride;
> int reg_stride_order;
>
> + /* If set, will always write field to HW. */
> + bool force_write_field;
> +
> /* regcache specific members */
> const struct regcache_ops *cache_ops;
> enum regcache_type cache_type;
> diff --git a/drivers/base/regmap/regmap-debugfs.c b/drivers/base/regmap/regmap-debugfs.c
> index c491fabe3617..f36027591e1a 100644
> --- a/drivers/base/regmap/regmap-debugfs.c
> +++ b/drivers/base/regmap/regmap-debugfs.c
> @@ -636,6 +636,17 @@ void regmap_debugfs_init(struct regmap *map)
> ®map_cache_bypass_fops);
> }
>
> + /*
> + * This could interfere with driver operation. Therefore, don't provide
> + * any real compile time configuration option for this feature. One will
> + * have to modify the source code directly in order to use it.
> + */
> +#undef REGMAP_ALLOW_FORCE_WRITE_FIELD_DEBUGFS
> +#ifdef REGMAP_ALLOW_FORCE_WRITE_FIELD_DEBUGFS
> + debugfs_create_bool("force_write_field", 0600, map->debugfs,
> + &map->force_write_field);
> +#endif
Please no, that means this will never ever ever get used, and if it
happens to break the build or runtime, no one will ever notice it.
If you need this for your device/tree/distro, great, just keep it as an
out-of-tree patch with the huge header "NEVER ENABLE THIS IN A REAL
SYSTEM" or something like that.
But as-is, we can't take this, sorry.
greg k-h
next prev parent reply other threads:[~2023-06-13 15:02 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-13 11:42 [PATCH v2] regmap: Add debugfs file for forcing field writes Waqar Hameed
2023-06-13 15:02 ` Greg Kroah-Hartman [this message]
2023-06-13 15:15 ` Ricard Wanderlof
2023-06-13 15:47 ` Mark Brown
2023-06-13 15:39 ` Mark Brown
2023-06-13 16:18 ` Mark Brown
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=2023061322-garter-linseed-6dfe@gregkh \
--to=gregkh@linuxfoundation.org \
--cc=broonie@kernel.org \
--cc=kernel@axis.com \
--cc=linux-kernel@vger.kernel.org \
--cc=rafael@kernel.org \
--cc=waqar.hameed@axis.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