All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH lora-next] net: lora: sx1301: Fix radio SPI write
       [not found] <20181230084427.32623-1-afaerber@suse.de>
@ 2018-12-31  0:14 ` Ben Whitten
  2018-12-31  2:52   ` Andreas Färber
  2018-12-31 18:29   ` Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Ben Whitten @ 2018-12-31  0:14 UTC (permalink / raw)
  To: Andreas Färber, Mark Brown; +Cc: linux-lpwan, Ben Whitten, LKML

+ Mark +linux-kernel
On Sun, 30 Dec 2018 at 08:45, Andreas Färber <afaerber@suse.de> wrote:
>
> When converting to regmap_bus we omitted the write flag,
> rendering all sx125x register writes no-op.
>
> Signed-off-by: Andreas Färber <afaerber@suse.de>
> ---
>  drivers/net/lora/sx130x_radio.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/net/lora/sx130x_radio.c b/drivers/net/lora/sx130x_radio.c
> index 6c94d13cd4db..e7b2df808c1a 100644
> --- a/drivers/net/lora/sx130x_radio.c
> +++ b/drivers/net/lora/sx130x_radio.c
> @@ -9,6 +9,7 @@
>   * Copyright (c) 2013 Semtech-Cycleo
>   */
>
> +#include <linux/bitops.h>
>  #include <linux/of.h>
>  #include <linux/of_device.h>
>  #include <linux/regmap.h>
> @@ -40,7 +41,7 @@ static int sx1301_regmap_bus_write(void *context, unsigned int reg,
>         ret = regmap_write(priv->regmap, cs, 0);
>         if (ret)
>                 return ret;
> -       ret = regmap_write(priv->regmap, addr, reg);
> +       ret = regmap_write(priv->regmap, addr, BIT(7) | reg);

Curious.
Isn't the (read/write)_flag_mask, set in the regmap_config, a property of
the device connected to the regmap_bus?
I would have expected this to have been applied prior to passing to a
regmap_bus call, surely the bus should only be concerned with transport?

It will work in our case as our current hardware uses 1 in bit 7 but it
will not if we ever see other radios with different masks.

If the regmap_bus provider does need to apply the mask, can we get the
end device regmap_config and apply it from there?
Mark what are your thoughts on the route to take?

Regards,
Ben Whitten

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH lora-next] net: lora: sx1301: Fix radio SPI write
  2018-12-31  0:14 ` [PATCH lora-next] net: lora: sx1301: Fix radio SPI write Ben Whitten
@ 2018-12-31  2:52   ` Andreas Färber
  2018-12-31 18:29   ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Andreas Färber @ 2018-12-31  2:52 UTC (permalink / raw)
  To: Ben Whitten; +Cc: Mark Brown, linux-lpwan, Ben Whitten, LKML

Am 31.12.18 um 01:14 schrieb Ben Whitten:
> + Mark +linux-kernel
> On Sun, 30 Dec 2018 at 08:45, Andreas Färber <afaerber@suse.de> wrote:
>>
>> When converting to regmap_bus we omitted the write flag,
>> rendering all sx125x register writes no-op.
>>
>> Signed-off-by: Andreas Färber <afaerber@suse.de>
>> ---
>>  drivers/net/lora/sx130x_radio.c | 3 ++-
>>  1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/net/lora/sx130x_radio.c b/drivers/net/lora/sx130x_radio.c
>> index 6c94d13cd4db..e7b2df808c1a 100644
>> --- a/drivers/net/lora/sx130x_radio.c
>> +++ b/drivers/net/lora/sx130x_radio.c
>> @@ -9,6 +9,7 @@
>>   * Copyright (c) 2013 Semtech-Cycleo
>>   */
>>
>> +#include <linux/bitops.h>
>>  #include <linux/of.h>
>>  #include <linux/of_device.h>
>>  #include <linux/regmap.h>
>> @@ -40,7 +41,7 @@ static int sx1301_regmap_bus_write(void *context, unsigned int reg,
>>         ret = regmap_write(priv->regmap, cs, 0);
>>         if (ret)
>>                 return ret;
>> -       ret = regmap_write(priv->regmap, addr, reg);
>> +       ret = regmap_write(priv->regmap, addr, BIT(7) | reg);
> 
> Curious.
> Isn't the (read/write)_flag_mask, set in the regmap_config, a property of
> the device connected to the regmap_bus?

Yes, I assume so.

> I would have expected this to have been applied prior to passing to a
> regmap_bus call, surely the bus should only be concerned with transport?

The argument the regmap_bus ops get is a reg though. It's up to our code
to convert it to an address.

> It will work in our case as our current hardware uses 1 in bit 7 but it
> will not if we ever see other radios with different masks.
> 
> If the regmap_bus provider does need to apply the mask, can we get the
> end device regmap_config and apply it from there?

I did not find a way to retrieve the struct regmap_config or its
.{read,write}_flag_mask values through any regmap helper. Otherwise that
would've been my first choice as well, since we do set it correctly.

We could add a regmap_config* field to struct sx130x_radio_device and
have our probe function populate it, but given that we are implementing
a regmap_bus here, #include "../../base/regmap/internal.h" while ugly
may be the sanest choice. It still requires to add a .regmap field to
struct sx130x_radio_device. Testing on the good interface went positive.

Regards,
Andreas

> Mark what are your thoughts on the route to take?
> 
> Regards,
> Ben Whitten

-- 
SUSE Linux GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Felix Imendörffer, Jane Smithard, Graham Norton
HRB 21284 (AG Nürnberg)

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH lora-next] net: lora: sx1301: Fix radio SPI write
  2018-12-31  0:14 ` [PATCH lora-next] net: lora: sx1301: Fix radio SPI write Ben Whitten
  2018-12-31  2:52   ` Andreas Färber
@ 2018-12-31 18:29   ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2018-12-31 18:29 UTC (permalink / raw)
  To: Ben Whitten; +Cc: Andreas Färber, linux-lpwan, Ben Whitten, LKML

[-- Attachment #1: Type: text/plain, Size: 478 bytes --]

On Mon, Dec 31, 2018 at 12:14:34AM +0000, Ben Whitten wrote:

> If the regmap_bus provider does need to apply the mask, can we get the
> end device regmap_config and apply it from there?
> Mark what are your thoughts on the route to take?

If you're getting a byte stream in then it'll have the mask applied.  If
you're providing per-register read/write ops no formatting at all will
be done, obviously in that case there's no need to bounce the
information through the config.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-12-31 18:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20181230084427.32623-1-afaerber@suse.de>
2018-12-31  0:14 ` [PATCH lora-next] net: lora: sx1301: Fix radio SPI write Ben Whitten
2018-12-31  2:52   ` Andreas Färber
2018-12-31 18:29   ` Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.