Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1205883 > unrolled thread
| Started by | Markus Pargmann <mpa@pengutronix.de> |
|---|---|
| First post | 2015-08-12 12:20 +0200 |
| Last post | 2015-08-12 14:40 +0200 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 12/20] regmap: Introduce max_raw_io for regmap_bulk_read/write Markus Pargmann <mpa@pengutronix.de> - 2015-08-12 12:20 +0200
Re: [PATCH 12/20] regmap: Introduce max_raw_io for regmap_bulk_read/write Mark Brown <broonie@kernel.org> - 2015-08-12 13:50 +0200
Re: [PATCH 12/20] regmap: Introduce max_raw_io for regmap_bulk_read/write Markus Pargmann <mpa@pengutronix.de> - 2015-08-12 14:40 +0200
| From | Markus Pargmann <mpa@pengutronix.de> |
|---|---|
| Date | 2015-08-12 12:20 +0200 |
| Subject | [PATCH 12/20] regmap: Introduce max_raw_io for regmap_bulk_read/write |
| Message-ID | <pWBiy-1oV-19@gated-at.bofh.it> |
There are some busses which have a limit on the maximum number of bytes
that can be send/received. An example for this is
I2C_FUNC_SMBUS_I2C_BLOCK which does not support any reads/writes of more
than 32 bytes. The regmap_bulk operations should still be able to
utilize the full 32 bytes.
Signed-off-by: Markus Pargmann <mpa@pengutronix.de>
---
drivers/base/regmap/internal.h | 3 ++
drivers/base/regmap/regmap.c | 82 ++++++++++++++++++++++++++++++++----------
include/linux/regmap.h | 2 ++
3 files changed, 69 insertions(+), 18 deletions(-)
diff --git a/drivers/base/regmap/internal.h b/drivers/base/regmap/internal.h
index b2b2849fc6d3..f94041658397 100644
--- a/drivers/base/regmap/internal.h
+++ b/drivers/base/regmap/internal.h
@@ -144,6 +144,9 @@ struct regmap {
/* if set, the device supports multi write mode */
bool can_multi_write;
+ /* if set, raw reads/writes are limited to this size */
+ size_t max_raw_io;
+
struct rb_root range_tree;
void *selector_work_buf; /* Scratch buffer used for selector */
};
diff --git a/drivers/base/regmap/regmap.c b/drivers/base/regmap/regmap.c
index 3b663350c573..6ad4ca849055 100644
--- a/drivers/base/regmap/regmap.c
+++ b/drivers/base/regmap/regmap.c
@@ -574,6 +574,7 @@ struct regmap *regmap_init(struct device *dev,
else
map->reg_stride = 1;
map->use_single_rw = config->use_single_rw || !bus->read || !bus->write;
+ map->max_raw_io = bus->max_raw_io;
map->can_multi_write = config->can_multi_write;
map->dev = dev;
map->bus = bus;
@@ -1675,6 +1676,7 @@ int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
{
int ret = 0, i;
size_t val_bytes = map->format.val_bytes;
+ size_t total_bytes = val_bytes * val_count;
if (map->bus && !map->format.parse_inplace)
return -EINVAL;
@@ -1715,20 +1717,39 @@ int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
}
out:
map->unlock(map->lock_arg);
- } else if (map->use_single_rw) {
+ } else if (map->use_single_rw ||
+ (map->max_raw_io && map->max_raw_io < total_bytes)) {
/*
* We need to handle bus writes separate to support val_bytes
* that are not powers of 2.
*/
+ int reg_stride = map->reg_stride;
+ size_t write_bytes = val_bytes;
+ size_t write_count = val_count;
+
+ if (!map->use_single_rw) {
+ write_count = total_bytes / map->max_raw_io;
+ write_bytes = map->max_raw_io;
+ reg_stride *= write_bytes / val_bytes;
+ }
+
map->lock(map->lock_arg);
+ /* Write as many bytes as possible with maximum write size */
for (i = 0; i < val_count; i++) {
ret = _regmap_raw_write(map,
- reg + (i * map->reg_stride),
- val + (i * val_bytes),
- val_bytes);
+ reg + (i * reg_stride),
+ val + (i * write_bytes),
+ write_bytes);
if (ret)
break;
}
+
+ /* Write remaining bytes */
+ if (!ret && write_bytes * i < total_bytes) {
+ ret = _regmap_raw_write(map, reg + (i * reg_stride),
+ val + (i * write_bytes),
+ total_bytes - i * write_bytes);
+ }
map->unlock(map->lock_arg);
} else {
void *wval;
@@ -2336,24 +2357,49 @@ int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
return -EINVAL;
if (map->bus && map->format.parse_inplace && (vol || map->cache_type == REGCACHE_NONE)) {
- /*
- * Some devices does not support bulk read, for
- * them we have a series of single read operations.
- */
- if (map->use_single_rw) {
- for (i = 0; i < val_count; i++) {
- ret = regmap_raw_read(map,
- reg + (i * map->reg_stride),
- val + (i * val_bytes),
- val_bytes);
- if (ret != 0)
- return ret;
- }
- } else {
+ size_t total_size = val_bytes * val_count;
+
+ if (!map->use_single_rw &&
+ (!map->max_raw_io || map->max_raw_io > total_size)) {
ret = regmap_raw_read(map, reg, val,
val_bytes * val_count);
if (ret != 0)
return ret;
+ } else {
+ /*
+ * Some devices do not support bulk read or do not
+ * support large bulk reads, for them we have a series
+ * of read operations.
+ */
+ int reg_stride = map->reg_stride;
+ size_t read_bytes = val_bytes;
+ size_t read_count = val_count;
+
+ if (!map->use_single_rw) {
+ read_count = total_size / map->max_raw_io;
+ read_bytes = map->max_raw_io;
+ reg_stride *= read_bytes / val_bytes;
+ }
+
+ /* Read bytes that fit into the max_raw_io size */
+ for (i = 0; i < read_count; i++) {
+ ret = regmap_raw_read(map,
+ reg + (i * reg_stride),
+ val + (i * read_bytes),
+ read_bytes);
+ if (ret != 0)
+ return ret;
+ }
+
+ /* Read remaining bytes */
+ if (read_bytes * i < total_size) {
+ ret = regmap_raw_read(map,
+ reg + (i * reg_stride),
+ val + (i * read_bytes),
+ total_size - i * read_bytes);
+ if (ret != 0)
+ return ret;
+ }
}
for (i = 0; i < val_count * val_bytes; i += val_bytes)
diff --git a/include/linux/regmap.h b/include/linux/regmap.h
index 6ff83c9ddb45..2cb62d141761 100644
--- a/include/linux/regmap.h
+++ b/include/linux/regmap.h
@@ -310,6 +310,7 @@ typedef void (*regmap_hw_free_context)(void *context);
* @val_format_endian_default: Default endianness for formatted register
* values. Used when the regmap_config specifies DEFAULT. If this is
* DEFAULT, BIG is assumed.
+ * @max_raw_io: Max raw read/write size that can be used on the bus.
*/
struct regmap_bus {
bool fast_io;
@@ -324,6 +325,7 @@ struct regmap_bus {
u8 read_flag_mask;
enum regmap_endian reg_format_endian_default;
enum regmap_endian val_format_endian_default;
+ size_t max_raw_io;
};
struct regmap *regmap_init(struct device *dev,
--
2.4.6
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Mark Brown <broonie@kernel.org> |
|---|---|
| Date | 2015-08-12 13:50 +0200 |
| Subject | Re: [PATCH 12/20] regmap: Introduce max_raw_io for regmap_bulk_read/write |
| Message-ID | <pWCHE-3ic-11@gated-at.bofh.it> |
| In reply to | #1205883 |
[Multipart message — attachments visible in raw view] — view raw
On Wed, Aug 12, 2015 at 12:12:37PM +0200, Markus Pargmann wrote:
> + /* if set, raw reads/writes are limited to this size */
> + size_t max_raw_io;
> +
Do this separately for read and write, there's doubtless going to be
something that has asymmetry.
> + if (!map->use_single_rw) {
> + write_count = total_bytes / map->max_raw_io;
> + write_bytes = map->max_raw_io;
We may not be able to fit a whole number of values into whatever the
constraint that the bus has is and partial values don't seem like a good
idea.
> + reg_stride *= write_bytes / val_bytes;
> + }
This is very confusing, regmap already has a concept of stride and this
isn't the same thing.
[toc] | [prev] | [next] | [standalone]
| From | Markus Pargmann <mpa@pengutronix.de> |
|---|---|
| Date | 2015-08-12 14:40 +0200 |
| Subject | Re: [PATCH 12/20] regmap: Introduce max_raw_io for regmap_bulk_read/write |
| Message-ID | <pWDu3-4ta-35@gated-at.bofh.it> |
| In reply to | #1205981 |
[Multipart message — attachments visible in raw view] — view raw
On Wed, Aug 12, 2015 at 12:49:31PM +0100, Mark Brown wrote:
> On Wed, Aug 12, 2015 at 12:12:37PM +0200, Markus Pargmann wrote:
>
> > + /* if set, raw reads/writes are limited to this size */
> > + size_t max_raw_io;
> > +
>
> Do this separately for read and write, there's doubtless going to be
> something that has asymmetry.
Okay.
>
> > + if (!map->use_single_rw) {
> > + write_count = total_bytes / map->max_raw_io;
> > + write_bytes = map->max_raw_io;
>
> We may not be able to fit a whole number of values into whatever the
> constraint that the bus has is and partial values don't seem like a good
> idea.
Oh right. Will change the calculation so that there are no partial
values being written.
>
> > + reg_stride *= write_bytes / val_bytes;
> > + }
>
> This is very confusing, regmap already has a concept of stride and this
> isn't the same thing.
Okay, will rename it.
Thanks,
Markus
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web