Re: Regression: spi: core: avoid waking pump thread from spi_sync instead run teardown delayed

From: kernel
Date: Sun Jan 20 2019 - 06:24:33 EST


Hi Mark!

> On 18.01.2019, at 20:12, Mark Brown <broonie@xxxxxxxxxx> wrote:
>
> On Fri, Jan 18, 2019 at 06:11:31PM +0100, kernel@xxxxxxxxxxxxxxxx wrote:
>
>> Does something like this looks acceptable?
>
> Yes, it does!

>
>> SPI_CONTROLLER_MODE_EXCLUSIVE could replace the bus_lock_flag.
>> I am also not sure of the âconventionâ of memory mode (i.e
>> using mem_ops). Is it maybe implicitly spi_bus_locked - i.e
>> typically only a single device?
>
> Yes, it does - we're basically handing over the entire SPI bus to
> another bit of hardware that will do memory mapped flash access so we
> can't really have anything else trying to do SPI operations at the same
> time.

These kind of changes it requires are consuming a bit more time than
I was hoping for.

So maybe at this very moment the best is reverting the patch.

I have some patches that would move towards that goal in
baby steps without having to resort to a big rewrite at
this very moment.

Maybe Jon can check each patch one after another to see if any is
producing the unexpected behavior and only then you would include
them...

As for the root cause of the regression: my guess is that spi-mem is
just not triggering a shutdown any more because of how message_pump works.

The improvement of the state-machine can then get addressed
separately.

Martin