* [PATCH] regmap: Don't attempt block writes when syncing cache on single_rw devices
@ 2014-08-27 12:09 Mark Brown
2014-08-27 13:30 ` Jarkko Nikula
0 siblings, 1 reply; 2+ messages in thread
From: Mark Brown @ 2014-08-27 12:09 UTC (permalink / raw)
To: Jarkko Nikula; +Cc: linux-kernel, linaro-kernel, Mark Brown
From: Mark Brown <broonie@linaro.org>
If the device can't support block writes then don't attempt to use raw
syncing which will automatically generate block writes for adjacent
registers, use the existing _single() block syncing implementation.
Reported-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
---
drivers/base/regmap/regcache.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/base/regmap/regcache.c b/drivers/base/regmap/regcache.c
index 29b4128da0b0..5617da6dc898 100644
--- a/drivers/base/regmap/regcache.c
+++ b/drivers/base/regmap/regcache.c
@@ -698,7 +698,7 @@ int regcache_sync_block(struct regmap *map, void *block,
unsigned int block_base, unsigned int start,
unsigned int end)
{
- if (regmap_can_raw_write(map))
+ if (regmap_can_raw_write(map) && !map->use_single_rw)
return regcache_sync_block_raw(map, block, cache_present,
block_base, start, end);
else
--
2.1.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] regmap: Don't attempt block writes when syncing cache on single_rw devices
2014-08-27 12:09 [PATCH] regmap: Don't attempt block writes when syncing cache on single_rw devices Mark Brown
@ 2014-08-27 13:30 ` Jarkko Nikula
0 siblings, 0 replies; 2+ messages in thread
From: Jarkko Nikula @ 2014-08-27 13:30 UTC (permalink / raw)
To: Mark Brown; +Cc: linux-kernel, linaro-kernel, Mark Brown
On 08/27/2014 03:09 PM, Mark Brown wrote:
> From: Mark Brown <broonie@linaro.org>
>
> If the device can't support block writes then don't attempt to use raw
> syncing which will automatically generate block writes for adjacent
> registers, use the existing _single() block syncing implementation.
>
> Reported-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
> Signed-off-by: Mark Brown <broonie@linaro.org>
> ---
> drivers/base/regmap/regcache.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
This works too with RT5642. It appeared page select for _regmap_write()
is actually handled implicitly for certain cases. regmap_init() sets
"map->reg_write = _regmap_bus_raw_write" in this case and
_regmap_bus_raw_write() then calls _regmap_raw_write(). I guess that can
be fixed when doing other cleanups or if some setup hits it.
Tested-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-08-27 13:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-27 12:09 [PATCH] regmap: Don't attempt block writes when syncing cache on single_rw devices Mark Brown
2014-08-27 13:30 ` Jarkko Nikula
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox