Skip to content

STM32: SPI clock not returning to idle state and generating additional clock cycles #11104

Open
@MichelRottleuthner

Description

Description

This issue is meant to keep track of the problems discovered when testing #7354. For more details see comments there.
On some stm32 platforms the RIOT SPI driver generates faulty output on the SPI pins.
For now the problem could be reproduced on the following boards: nucleo-f446ze, nucleo-l073rz and nucleo-l476rg (no other STM32 were tested until now).

Steps to reproduce the issue

Connect a logic analyzer to your spi pins, use tests/periph_spi and try the following cases:
1)init 0 0 0 3 14
clock state is NOT reset to zero properly after transmission.

2)init 0 0 1 3 14
clock state is NOT reset to zero properly after transmission.

3)init 0 0 2 3 14
clock state is NOT reset to zero properly after transmission.

4)init 0 0 3 3 14
clock state is reset to zero properly after transmission.

5)init 0 0 4 3 14
clock state is reset to zero properly after transmission.

Expected results

No additional clock cycles before/after sending data, clock returns to idle state after transmission.

Actual results

A) not returning to zero, using config (1) from above:
spi_0
B) returning to zero, using config (5) from above:
spi_4

C) If you start another transmission after (A), you get this:
spi_0_1

copied from #7354(comment):

The root cause of this seems to be that the driver is disabling the SPI peripheral to early after the last bit was clocked out, after the transmission in spi_transfer_bytes. If you insert a small timeout of ~half an SPI-clock period before the disable command, you won't see the faulty behaviour. As this hapens only with slow SPI-clock settings (clk setting <=1 in spi periph test) I assume it's some kind of race condition based on internal clock-synchronisation problems where the hardware doesn't reach the point where it switches the clock back to idle before the peripheral is disabled by the riot driver. I double checked that the driver uses the correct procedure for turning off SPI (waiting for TXE, BSY etc.) and I can't find a problem there.
Possible workarounds I identified so far:

  1. don't disable SPI -> solves A and C, possibly bad for low power and/or shared peripheral usage
  2. change the SPI prescalers to not support the slow clock speeds on affected MCUs -> avoids A and C but decreases functionality
  3. move setting the MSTR bit from spi_acquire to spi_transfer_bytes -> solves only C, but with no additional clock cycles it is at least ensured to not transmit borked data. Leaving the clock on the active level might not be a good thing though.
  4. poll clock gpio till returnig to idle level before disabling SPI -> solves A and C - but a bit hacky

Versions

The last version this was reproduced with is 3c9eb94 (between 2018.04 and 2018.07). Needs to be confirmed with current master again.

Metadata

Labels

Area: driversArea: Device driversState: don't staleState: Tell state-bot to ignore this issueType: bugThe issue reports a bug / The PR fixes a bug (including spelling errors)

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions