MX28: MMC: Avoid DMA DCache race condition
authorMarek Vasut <marex@denx.de>
Fri, 31 Aug 2012 16:18:10 +0000 (16:18 +0000)
committerStefano Babic <sbabic@denx.de>
Thu, 6 Sep 2012 12:17:55 +0000 (14:17 +0200)
This patch prevents dcache-related problem. The problem manifested
itself on the SPI driver, this is just a port to the MMC driver.

The scenario is the same. In case an "mmc read" is issued to a
buffer which was written right before it and data cache is enabled,
the cache eviction might happen during the DMA transfer into the
buffer, therefore corrupting the buffer. Clear any cache lines that
might contain the buffer to prevent such issue.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Fabio Estevam <festevam@gmail.com>
Cc: Otavio Salvador <otavio@ossystems.com.br>
Cc: Stefano Babic <sbabic@denx.de>

No differences found