Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1205897 > unrolled thread

[PATCH 11/20] regmap: _regmap_raw_read: Add handling of busses without bus->read()

Started byMarkus Pargmann <mpa@pengutronix.de>
First post2015-08-12 12:20 +0200
Last post2015-08-15 04:20 +0200
Articles 4 — 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.


Contents

  [PATCH 11/20] regmap: _regmap_raw_read: Add handling of busses without bus->read() Markus Pargmann <mpa@pengutronix.de> - 2015-08-12 12:20 +0200
    Re: [PATCH 11/20] regmap: _regmap_raw_read: Add handling of busses  without bus->read() Mark Brown <broonie@kernel.org> - 2015-08-12 13:30 +0200
      Re: [PATCH 11/20] regmap: _regmap_raw_read: Add handling of busses  without bus->read() Markus Pargmann <mpa@pengutronix.de> - 2015-08-12 14:40 +0200
        Re: [PATCH 11/20] regmap: _regmap_raw_read: Add handling of busses  without bus->read() Mark Brown <broonie@kernel.org> - 2015-08-15 04:20 +0200

#1205897 — [PATCH 11/20] regmap: _regmap_raw_read: Add handling of busses without bus->read()

FromMarkus Pargmann <mpa@pengutronix.de>
Date2015-08-12 12:20 +0200
Subject[PATCH 11/20] regmap: _regmap_raw_read: Add handling of busses without bus->read()
Message-ID<pWBiz-1oV-55@gated-at.bofh.it>
Handle easy reads by using bus->reg_read(). Return with an error value
if a read is requested that can not be handled with reg_read().

Signed-off-by: Markus Pargmann <mpa@pengutronix.de>
---
 drivers/base/regmap/regmap.c | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/drivers/base/regmap/regmap.c b/drivers/base/regmap/regmap.c
index 87f15fb60bc5..3b663350c573 100644
--- a/drivers/base/regmap/regmap.c
+++ b/drivers/base/regmap/regmap.c
@@ -2071,6 +2071,21 @@ static int _regmap_raw_read(struct regmap *map, unsigned int reg, void *val,
 
 	WARN_ON(!map->bus);
 
+	/*
+	 * There are busses that do not have a read function as it is optional.
+	 * Use their reg_read function instead if the requested number of bytes
+	 * is correct.
+	 */
+	if (!map->bus->read) {
+		/*
+		 * bus_reg_read() does not support reading values that are not
+		 * exactly the size of format.val_bytes
+		 */
+		if (val_len != map->format.val_bytes)
+			return -EINVAL;
+		return _regmap_bus_reg_read(map, reg, val);
+	}
+
 	range = _regmap_range_lookup(map, reg);
 	if (range) {
 		ret = _regmap_select_page(map, &reg, range,
-- 
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]


#1205971 — Re: [PATCH 11/20] regmap: _regmap_raw_read: Add handling of busses without bus->read()

FromMark Brown <broonie@kernel.org>
Date2015-08-12 13:30 +0200
SubjectRe: [PATCH 11/20] regmap: _regmap_raw_read: Add handling of busses without bus->read()
Message-ID<pWCoh-2VG-1@gated-at.bofh.it>
In reply to#1205897

[Multipart message — attachments visible in raw view] — view raw

On Wed, Aug 12, 2015 at 12:12:36PM +0200, Markus Pargmann wrote:

> +	/*
> +	 * There are busses that do not have a read function as it is optional.
> +	 * Use their reg_read function instead if the requested number of bytes
> +	 * is correct.
> +	 */
> +	if (!map->bus->read) {
> +		/*
> +		 * bus_reg_read() does not support reading values that are not
> +		 * exactly the size of format.val_bytes
> +		 */
> +		if (val_len != map->format.val_bytes)
> +			return -EINVAL;
> +		return _regmap_bus_reg_read(map, reg, val);
> +	}

No, this makes no sense - if the device doesn't have a read operation
then it doesn't support a raw data stream and hence can't support raw
access sensibly.  Callers that want to access a lot of registers at once
without knowing what the wire format for the device is should be using
the bulk or multi interfaces.

[toc] | [prev] | [next] | [standalone]


#1206018 — Re: [PATCH 11/20] regmap: _regmap_raw_read: Add handling of busses without bus->read()

FromMarkus Pargmann <mpa@pengutronix.de>
Date2015-08-12 14:40 +0200
SubjectRe: [PATCH 11/20] regmap: _regmap_raw_read: Add handling of busses without bus->read()
Message-ID<pWDu2-4ta-17@gated-at.bofh.it>
In reply to#1205971

[Multipart message — attachments visible in raw view] — view raw

On Wed, Aug 12, 2015 at 12:27:07PM +0100, Mark Brown wrote:
> On Wed, Aug 12, 2015 at 12:12:36PM +0200, Markus Pargmann wrote:
> 
> > +	/*
> > +	 * There are busses that do not have a read function as it is optional.
> > +	 * Use their reg_read function instead if the requested number of bytes
> > +	 * is correct.
> > +	 */
> > +	if (!map->bus->read) {
> > +		/*
> > +		 * bus_reg_read() does not support reading values that are not
> > +		 * exactly the size of format.val_bytes
> > +		 */
> > +		if (val_len != map->format.val_bytes)
> > +			return -EINVAL;
> > +		return _regmap_bus_reg_read(map, reg, val);
> > +	}
> 
> No, this makes no sense - if the device doesn't have a read operation
> then it doesn't support a raw data stream and hence can't support raw
> access sensibly.  Callers that want to access a lot of registers at once
> without knowing what the wire format for the device is should be using
> the bulk or multi interfaces.

Yes okay. Then I will reduce this patch to the following and put it
into regmap_read() instead?
	if (!map->bus->read) {
		return -EINVAL;

Is -EINVAL the right thing to return or would you prefer -ENOTSUPP?

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] | [next] | [standalone]


#1207983 — Re: [PATCH 11/20] regmap: _regmap_raw_read: Add handling of busses without bus->read()

FromMark Brown <broonie@kernel.org>
Date2015-08-15 04:20 +0200
SubjectRe: [PATCH 11/20] regmap: _regmap_raw_read: Add handling of busses without bus->read()
Message-ID<pXzeG-3OQ-15@gated-at.bofh.it>
In reply to#1206018

[Multipart message — attachments visible in raw view] — view raw

On Wed, Aug 12, 2015 at 02:34:12PM +0200, Markus Pargmann wrote:

> Is -EINVAL the right thing to return or would you prefer -ENOTSUPP?

-ENOTSUPP is going to be better.

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web