RIOT-OS / RIOT

RIOT - The friendly OS for IoT
https://riot-os.org
GNU Lesser General Public License v2.1
4.92k stars 1.99k forks source link

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

Open MichelRottleuthner opened 5 years ago

MichelRottleuthner commented 5 years ago

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.

stale[bot] commented 5 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. If you want me to ignore this issue, please mark it with the "State: don't stale" label. Thank you for your contributions.

MrKevinWeiss commented 5 years ago

Not stale! SPI tests incoming.

ghost commented 3 years ago

Hi all!, I reproduce this error with a STM32F303CCT6 board.

I dont know if I'm forgotting something, but I resolved the problem adding a PullDown to SCLK pin with: GPIOB->PUPDR |= GPIO_PUPDR_PUPDR13_1; //PB13 = SCLK con pulldown GPIOB->PUPDR &= ~(GPIO_PUPDR_PUPDR13_0);

maribu commented 1 year ago

Maybe https://github.com/RIOT-OS/RIOT/pull/19431 fixed the issue?