regmap: Implement regcache_cache_bypass helper function
authorDimitris Papastamos <dp@opensource.wolfsonmicro.com>
Thu, 29 Sep 2011 13:36:27 +0000 (14:36 +0100)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Fri, 30 Sep 2011 12:57:47 +0000 (13:57 +0100)
Ensure we've got a function so users can enable/disable the
cache bypass option.

Signed-off-by: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/base/regmap/regcache.c
include/linux/regmap.h

index 5dbc5076267e995b006b594a9c64675ae361e2ef..876622453cd84558a9d874035a08ae3eb3ac576f 100644 (file)
@@ -286,6 +286,25 @@ void regcache_cache_only(struct regmap *map, bool enable)
 }
 EXPORT_SYMBOL_GPL(regcache_cache_only);
 
+/**
+ * regcache_cache_bypass: Put a register map into cache bypass mode
+ *
+ * @map: map to configure
+ * @cache_only: flag if changes should not be written to the hardware
+ *
+ * When a register map is marked with the cache bypass option, writes
+ * to the register map API will only update the hardware and not the
+ * the cache directly.  This is useful when syncing the cache back to
+ * the hardware.
+ */
+void regcache_cache_bypass(struct regmap *map, bool enable)
+{
+       mutex_lock(&map->lock);
+       map->cache_bypass = enable;
+       mutex_unlock(&map->lock);
+}
+EXPORT_SYMBOL_GPL(regcache_cache_bypass);
+
 bool regcache_set_val(void *base, unsigned int idx,
                      unsigned int val, unsigned int word_size)
 {
index 76ac255a17a5aff211204add0022b75e4891c4ea..3daac2d8dc37c427bd49d173fe1e0b2d645bed2b 100644 (file)
@@ -142,5 +142,6 @@ int regmap_update_bits(struct regmap *map, unsigned int reg,
 
 int regcache_sync(struct regmap *map);
 void regcache_cache_only(struct regmap *map, bool enable);
+void regcache_cache_bypass(struct regmap *map, bool enable);
 
 #endif