All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mfd: motorola-cpcap: Do not hardcode SPI mode flags
@ 2019-12-04 23:19 Linus Walleij
  2019-12-19 17:04 ` Tony Lindgren
  0 siblings, 1 reply; 5+ messages in thread
From: Linus Walleij @ 2019-12-04 23:19 UTC (permalink / raw)
  To: lee.jones, linux-kernel; +Cc: Linus Walleij, Mark Brown

The current use of mode flags to us SPI_MODE_0 and
SPI_CS_HIGH is fragile: it overwrites anything already
assigned by the SPI core. Change it thusly:

- Just |= the SPI_MODE_0 so we keep other flags
- Assign ^= SPI_CS_HIGH since we might be active high
  already, and that is usually the case with GPIOs used
  for chip select, even if they are in practice active low.

Add a comment clarifying why ^= SPI_CS_HIGH is the right
choice here.

Reported-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/mfd/motorola-cpcap.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/drivers/mfd/motorola-cpcap.c b/drivers/mfd/motorola-cpcap.c
index 52f38e57cdc1..a3bc61b8008c 100644
--- a/drivers/mfd/motorola-cpcap.c
+++ b/drivers/mfd/motorola-cpcap.c
@@ -279,7 +279,13 @@ static int cpcap_probe(struct spi_device *spi)
 	spi_set_drvdata(spi, cpcap);
 
 	spi->bits_per_word = 16;
-	spi->mode = SPI_MODE_0 | SPI_CS_HIGH;
+	spi->mode |= SPI_MODE_0;
+	/*
+	 * Active high should be defined as "inverse polarity" as GPIO-based
+	 * chip selects can be logically active high but inverted by the GPIO
+	 * library.
+	 */
+	spi->mode ^= SPI_CS_HIGH;
 
 	ret = spi_setup(spi);
 	if (ret)
-- 
2.23.0


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

* Re: [PATCH] mfd: motorola-cpcap: Do not hardcode SPI mode flags
  2019-12-04 23:19 [PATCH] mfd: motorola-cpcap: Do not hardcode SPI mode flags Linus Walleij
@ 2019-12-19 17:04 ` Tony Lindgren
  2020-01-07  9:57   ` Linus Walleij
  0 siblings, 1 reply; 5+ messages in thread
From: Tony Lindgren @ 2019-12-19 17:04 UTC (permalink / raw)
  To: Linus Walleij; +Cc: lee.jones, linux-kernel, Mark Brown, Sebastian Reichel

Hi Linus,

* Linus Walleij <linus.walleij@linaro.org> [700101 00:00]:
> The current use of mode flags to us SPI_MODE_0 and
> SPI_CS_HIGH is fragile: it overwrites anything already
> assigned by the SPI core. Change it thusly:
> 
> - Just |= the SPI_MODE_0 so we keep other flags
> - Assign ^= SPI_CS_HIGH since we might be active high
>   already, and that is usually the case with GPIOs used
>   for chip select, even if they are in practice active low.
> 
> Add a comment clarifying why ^= SPI_CS_HIGH is the right
> choice here.

Looks like this breaks booting for droid4 with a cpcap
PMIC, probably as regulators won't work. There's no GPIO
controller involved in this case for the chip select, the
pins are directly controlled by the spi-omap2-mcspi.c
driver.

From the pin muxing setup we see there's a pull-down on
mcspi1_cs0 pin meaning it's active high:

/* 0x4a100138 mcspi1_cs0.mcspi1_cs0 ae23 */
OMAP4_IOPAD(0x138, PIN_INPUT_PULLDOWN | MUX_MODE0)

My guess a similar issue is with similar patches for
all non-gpio spi controllers?

Let me know if you want me to test some other changes,
or if this patch depends on some other changes.

Regards,

Tony


> Reported-by: Mark Brown <broonie@kernel.org>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
>  drivers/mfd/motorola-cpcap.c | 8 +++++++-
>  1 file changed, 7 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/mfd/motorola-cpcap.c b/drivers/mfd/motorola-cpcap.c
> index 52f38e57cdc1..a3bc61b8008c 100644
> --- a/drivers/mfd/motorola-cpcap.c
> +++ b/drivers/mfd/motorola-cpcap.c
> @@ -279,7 +279,13 @@ static int cpcap_probe(struct spi_device *spi)
>  	spi_set_drvdata(spi, cpcap);
>  
>  	spi->bits_per_word = 16;
> -	spi->mode = SPI_MODE_0 | SPI_CS_HIGH;
> +	spi->mode |= SPI_MODE_0;
> +	/*
> +	 * Active high should be defined as "inverse polarity" as GPIO-based
> +	 * chip selects can be logically active high but inverted by the GPIO
> +	 * library.
> +	 */
> +	spi->mode ^= SPI_CS_HIGH;
>  
>  	ret = spi_setup(spi);
>  	if (ret)
> -- 
> 2.23.0
> 

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

* Re: [PATCH] mfd: motorola-cpcap: Do not hardcode SPI mode flags
  2019-12-19 17:04 ` Tony Lindgren
@ 2020-01-07  9:57   ` Linus Walleij
  2020-01-07 18:24     ` Tony Lindgren
  0 siblings, 1 reply; 5+ messages in thread
From: Linus Walleij @ 2020-01-07  9:57 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: Lee Jones, linux-kernel, Mark Brown, Sebastian Reichel

On Thu, Dec 19, 2019 at 6:04 PM Tony Lindgren <tony@atomide.com> wrote:

> * Linus Walleij <linus.walleij@linaro.org> [700101 00:00]:
> > The current use of mode flags to us SPI_MODE_0 and
> > SPI_CS_HIGH is fragile: it overwrites anything already
> > assigned by the SPI core. Change it thusly:
> >
> > - Just |= the SPI_MODE_0 so we keep other flags
> > - Assign ^= SPI_CS_HIGH since we might be active high
> >   already, and that is usually the case with GPIOs used
> >   for chip select, even if they are in practice active low.
> >
> > Add a comment clarifying why ^= SPI_CS_HIGH is the right
> > choice here.
>
> Looks like this breaks booting for droid4 with a cpcap
> PMIC, probably as regulators won't work. There's no GPIO
> controller involved in this case for the chip select, the
> pins are directly controlled by the spi-omap2-mcspi.c
> driver.
>
> From the pin muxing setup we see there's a pull-down on
> mcspi1_cs0 pin meaning it's active high:
>
> /* 0x4a100138 mcspi1_cs0.mcspi1_cs0 ae23 */
> OMAP4_IOPAD(0x138, PIN_INPUT_PULLDOWN | MUX_MODE0)
>
> My guess a similar issue is with similar patches for
> all non-gpio spi controllers?
>
> Let me know if you want me to test some other changes,
> or if this patch depends on some other changes.

So this must mean that something else is setting SPI_CS_HIGH
for this driver, such as the device tree, right?

And the |= SPI_CS_HIGH assignment in the driver is just
surplus and we should just delete this code instead.

Would that be right?

Yours,
Linus Walleij

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

* Re: [PATCH] mfd: motorola-cpcap: Do not hardcode SPI mode flags
  2020-01-07  9:57   ` Linus Walleij
@ 2020-01-07 18:24     ` Tony Lindgren
  2020-01-07 18:37       ` Tony Lindgren
  0 siblings, 1 reply; 5+ messages in thread
From: Tony Lindgren @ 2020-01-07 18:24 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Lee Jones, linux-kernel, Mark Brown, Sebastian Reichel, linux-omap

* Linus Walleij <linus.walleij@linaro.org> [200107 09:58]:
> On Thu, Dec 19, 2019 at 6:04 PM Tony Lindgren <tony@atomide.com> wrote:
> 
> > * Linus Walleij <linus.walleij@linaro.org> [700101 00:00]:
> > > The current use of mode flags to us SPI_MODE_0 and
> > > SPI_CS_HIGH is fragile: it overwrites anything already
> > > assigned by the SPI core. Change it thusly:
> > >
> > > - Just |= the SPI_MODE_0 so we keep other flags
> > > - Assign ^= SPI_CS_HIGH since we might be active high
> > >   already, and that is usually the case with GPIOs used
> > >   for chip select, even if they are in practice active low.
> > >
> > > Add a comment clarifying why ^= SPI_CS_HIGH is the right
> > > choice here.
> >
> > Looks like this breaks booting for droid4 with a cpcap
> > PMIC, probably as regulators won't work. There's no GPIO
> > controller involved in this case for the chip select, the
> > pins are directly controlled by the spi-omap2-mcspi.c
> > driver.
> >
> > From the pin muxing setup we see there's a pull-down on
> > mcspi1_cs0 pin meaning it's active high:
> >
> > /* 0x4a100138 mcspi1_cs0.mcspi1_cs0 ae23 */
> > OMAP4_IOPAD(0x138, PIN_INPUT_PULLDOWN | MUX_MODE0)
> >
> > My guess a similar issue is with similar patches for
> > all non-gpio spi controllers?
> >
> > Let me know if you want me to test some other changes,
> > or if this patch depends on some other changes.
> 
> So this must mean that something else is setting SPI_CS_HIGH
> for this driver, such as the device tree, right?

Hmm yes we have "spi-cs-high" property set in the dts.

But looking at drivers/spi/spi-omap2-mcspi.c, it also
provides an option to use a GPIO for chip select in
omap2_mcspi_setup(). That does not seem to be used though
based on a quick grep though.

> And the |= SPI_CS_HIGH assignment in the driver is just
> surplus and we should just delete this code instead.
> 
> Would that be right?

Sorry I don't know, maybe. If you have some test patch to
try I can easily test.

Regards,

Tony

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

* Re: [PATCH] mfd: motorola-cpcap: Do not hardcode SPI mode flags
  2020-01-07 18:24     ` Tony Lindgren
@ 2020-01-07 18:37       ` Tony Lindgren
  0 siblings, 0 replies; 5+ messages in thread
From: Tony Lindgren @ 2020-01-07 18:37 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Lee Jones, linux-kernel, Mark Brown, Sebastian Reichel, linux-omap

* Tony Lindgren <tony@atomide.com> [200107 18:24]:
> * Linus Walleij <linus.walleij@linaro.org> [200107 09:58]:
> > On Thu, Dec 19, 2019 at 6:04 PM Tony Lindgren <tony@atomide.com> wrote:
> > 
> > > * Linus Walleij <linus.walleij@linaro.org> [700101 00:00]:
> > > > The current use of mode flags to us SPI_MODE_0 and
> > > > SPI_CS_HIGH is fragile: it overwrites anything already
> > > > assigned by the SPI core. Change it thusly:
> > > >
> > > > - Just |= the SPI_MODE_0 so we keep other flags
> > > > - Assign ^= SPI_CS_HIGH since we might be active high
> > > >   already, and that is usually the case with GPIOs used
> > > >   for chip select, even if they are in practice active low.
> > > >
> > > > Add a comment clarifying why ^= SPI_CS_HIGH is the right
> > > > choice here.
> > >
> > > Looks like this breaks booting for droid4 with a cpcap
> > > PMIC, probably as regulators won't work. There's no GPIO
> > > controller involved in this case for the chip select, the
> > > pins are directly controlled by the spi-omap2-mcspi.c
> > > driver.
> > >
> > > From the pin muxing setup we see there's a pull-down on
> > > mcspi1_cs0 pin meaning it's active high:
> > >
> > > /* 0x4a100138 mcspi1_cs0.mcspi1_cs0 ae23 */
> > > OMAP4_IOPAD(0x138, PIN_INPUT_PULLDOWN | MUX_MODE0)
> > >
> > > My guess a similar issue is with similar patches for
> > > all non-gpio spi controllers?
> > >
> > > Let me know if you want me to test some other changes,
> > > or if this patch depends on some other changes.
> > 
> > So this must mean that something else is setting SPI_CS_HIGH
> > for this driver, such as the device tree, right?
> 
> Hmm yes we have "spi-cs-high" property set in the dts.
> 
> But looking at drivers/spi/spi-omap2-mcspi.c, it also
> provides an option to use a GPIO for chip select in
> omap2_mcspi_setup(). That does not seem to be used though
> based on a quick grep though.
> 
> > And the |= SPI_CS_HIGH assignment in the driver is just
> > surplus and we should just delete this code instead.
> > 
> > Would that be right?
> 
> Sorry I don't know, maybe. If you have some test patch to
> try I can easily test.

Oh sorry, I guess you're suggesting we drop SPI_CS_HIGH from
drivers/mfd/motorola-cpcap.c, and not from spi-omap2-mcspi.c..
Too much glög over the holidays probably :)

Anyways, removing SPI_CS_HIGH motorola-cpcap.c also causes
mounting MMC to fail looks like. I wonder if we're missing
of_property_read_bool() for spi-cs-high in spi-omap2-mcspi.c?

Regards,

Tony

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

end of thread, other threads:[~2020-01-07 18:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-04 23:19 [PATCH] mfd: motorola-cpcap: Do not hardcode SPI mode flags Linus Walleij
2019-12-19 17:04 ` Tony Lindgren
2020-01-07  9:57   ` Linus Walleij
2020-01-07 18:24     ` Tony Lindgren
2020-01-07 18:37       ` Tony Lindgren

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.