FMC: Data integrity in SDRAM
Hi everyone,
I am observing some data corruption in an external SDRAM connected to an STM32 F7 FMC peripheral and I am trying to understand what is happening and how to prevent it.
Scenario:
- Configure the FMC to interface with a Winbond external SDRAM chip
- Allocated a static memory buffer in the external SDRAM (somewhere in the 0xC000 0000 to 0xCFFF FFFF region)
- SDRAM write 1: reset the whole buffer to a known value [memset(0xFF)] to be sure buffer contents are in a known state
- SDRAM write 2: immediately after SDRAM write 1, populate the buffer with my data of interest
- immediately after SDRAM write 2, read the buffer and notice the data corruption. I.e., in the middle of my data of interest, some 0xFF are still present (figure bellow).

My theory:
- my theory is that when we write to the memory in the external RAM, we are not actually “writing to the memory in the external RAM”. We are in fact writing to the FMC SDRAM memory mapped region (0xC000 0000 to 0xCFFF FFFF) and then, in the background, the FMC peripheral updates the external RAM... which takes some time. So when "SDRAM write 2" operation starts the FMC is still updating the SDRAM as requested in the "SDRAM write 1" step. So at this point the FMC has to simultaneously reflect in the SDRAM the "SDRAM write 1" and "SDRAM write 2" causing a concurrency problem leading the data reading showing some 0xFFs in the middle of the data of interest
Where I need help:
- Is my theory / understanding described above correct? If not, what am missing?
- If so, is there a way to make sure that the "SDRAM write 2" to the SDRAM only occurs once the "SDRAM write 1" has finished?
EDIT:
I forgot to mention in the initial description above that if the "SDRAM write 1" is removed, then the data read back matches the "SDRAM write 2".
Kind regards
