aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Pargmann <mpa@pengutronix.de>2015-08-30 03:33:54 -0400
committerMark Brown <broonie@kernel.org>2015-08-30 05:19:22 -0400
commitf50c9eb4e9304cf555206c93152f580c0e7213b2 (patch)
tree00ad58396ef9f6263e56c3232aa6b521960658b1
parentadaac459759db4a1fd35baddbe47bac700095496 (diff)
regmap: regmap max_raw_read/write getter functions
Add functions to access the maximum size we can read/write using regmap_raw_read/write(). This helps drivers that need to know how much they can write with the raw functions without problems. There are some devices (e.g. bmc150) that have fifos as registers which need to be read in specific chunks otherwise samples are dropped. Signed-off-by: Markus Pargmann <mpa@pengutronix.de> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--drivers/base/regmap/regmap.c22
-rw-r--r--include/linux/regmap.h2
2 files changed, 24 insertions, 0 deletions
diff --git a/drivers/base/regmap/regmap.c b/drivers/base/regmap/regmap.c
index 7cbe42680877..47210101e308 100644
--- a/drivers/base/regmap/regmap.c
+++ b/drivers/base/regmap/regmap.c
@@ -1393,6 +1393,28 @@ bool regmap_can_raw_write(struct regmap *map)
1393} 1393}
1394EXPORT_SYMBOL_GPL(regmap_can_raw_write); 1394EXPORT_SYMBOL_GPL(regmap_can_raw_write);
1395 1395
1396/**
1397 * regmap_get_raw_read_max - Get the maximum size we can read
1398 *
1399 * @map: Map to check.
1400 */
1401size_t regmap_get_raw_read_max(struct regmap *map)
1402{
1403 return map->max_raw_read;
1404}
1405EXPORT_SYMBOL_GPL(regmap_get_raw_read_max);
1406
1407/**
1408 * regmap_get_raw_write_max - Get the maximum size we can read
1409 *
1410 * @map: Map to check.
1411 */
1412size_t regmap_get_raw_write_max(struct regmap *map)
1413{
1414 return map->max_raw_write;
1415}
1416EXPORT_SYMBOL_GPL(regmap_get_raw_write_max);
1417
1396static int _regmap_bus_formatted_write(void *context, unsigned int reg, 1418static int _regmap_bus_formatted_write(void *context, unsigned int reg,
1397 unsigned int val) 1419 unsigned int val)
1398{ 1420{
diff --git a/include/linux/regmap.h b/include/linux/regmap.h
index 327b8f291d3f..6724d0e3819e 100644
--- a/include/linux/regmap.h
+++ b/include/linux/regmap.h
@@ -444,6 +444,8 @@ int regmap_get_max_register(struct regmap *map);
444int regmap_get_reg_stride(struct regmap *map); 444int regmap_get_reg_stride(struct regmap *map);
445int regmap_async_complete(struct regmap *map); 445int regmap_async_complete(struct regmap *map);
446bool regmap_can_raw_write(struct regmap *map); 446bool regmap_can_raw_write(struct regmap *map);
447size_t regmap_get_raw_read_max(struct regmap *map);
448size_t regmap_get_raw_write_max(struct regmap *map);
447 449
448int regcache_sync(struct regmap *map); 450int regcache_sync(struct regmap *map);
449int regcache_sync_region(struct regmap *map, unsigned int min, 451int regcache_sync_region(struct regmap *map, unsigned int min,