Re: [PATCH] regmap: prevent noinc writes from clobbering cache

From: Greg Kroah-Hartman
Date: Wed Nov 01 2023 - 14:06:45 EST


On Wed, Nov 01, 2023 at 10:29:27AM -0400, Ben Wolsieffer wrote:
> Currently, noinc writes are cached as if they were standard incrementing
> writes, overwriting unrelated register values in the cache. Instead, we
> want to cache the last value written to the register, as is done in the
> accelerated noinc handler (regmap_noinc_readwrite).
>
> Fixes: cdf6b11daa77 ("regmap: Add regmap_noinc_write API")
> Signed-off-by: Ben Wolsieffer <ben.wolsieffer@xxxxxxxxxxx>
> ---
> drivers/base/regmap/regmap.c | 16 +++++++++-------
> 1 file changed, 9 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/base/regmap/regmap.c b/drivers/base/regmap/regmap.c
> index 234a84ecde8b..ea6157747199 100644
> --- a/drivers/base/regmap/regmap.c
> +++ b/drivers/base/regmap/regmap.c
> @@ -1620,17 +1620,19 @@ static int _regmap_raw_write_impl(struct regmap *map, unsigned int reg,
> }
>
> if (!map->cache_bypass && map->format.parse_val) {
> - unsigned int ival;
> + unsigned int ival, offset;
> int val_bytes = map->format.val_bytes;
> - for (i = 0; i < val_len / val_bytes; i++) {
> - ival = map->format.parse_val(val + (i * val_bytes));
> - ret = regcache_write(map,
> - reg + regmap_get_offset(map, i),
> - ival);
> +
> + /* Cache the last written value for noinc writes */
> + i = noinc ? val_len - val_bytes : 0;
> + for (; i < val_len; i += val_bytes) {
> + ival = map->format.parse_val(val + i);
> + offset = noinc ? 0 : regmap_get_offset(map, i / val_bytes);
> + ret = regcache_write(map, reg + offset, ival);
> if (ret) {
> dev_err(map->dev,
> "Error in caching of register: %x ret: %d\n",
> - reg + regmap_get_offset(map, i), ret);
> + reg + offset, ret);
> return ret;
> }
> }
> --
> 2.42.0
>

Hi,

This is the friendly patch-bot of Greg Kroah-Hartman. You have sent him
a patch that has triggered this response. He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created. Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.

You are receiving this message because of the following common error(s)
as indicated below:

- You have marked a patch with a "Fixes:" tag for a commit that is in an
older released kernel, yet you do not have a cc: stable line in the
signed-off-by area at all, which means that the patch will not be
applied to any older kernel releases. To properly fix this, please
follow the documented rules in the
Documentation/process/stable-kernel-rules.rst file for how to resolve
this.

If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.

thanks,

greg k-h's patch email bot