From: Masahiro Yamada Date: Fri, 14 Feb 2020 07:40:27 +0000 (+0900) Subject: mmc: sdhci: fix missing cache invalidation after reading by DMA X-Git-Tag: submit/tizen_6.0/20211217.073345~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2827f204dff93c4510f6721fa1e60bc064503f13;p=platform%2Fkernel%2Fu-boot.git mmc: sdhci: fix missing cache invalidation after reading by DMA This driver currently performs cache operation before the DMA start, but does nothing after the DMA completion. When reading data by DMA, the cache invalidation is needed also after finishing the DMA transfer. Otherwise, the CPU might read data from the cache instead of from the main memory when speculative memory read or memory prefetch occurs. Instead of calling the cache operation directly, this commit adds dma_unmap_single(), which performs cache invalidation internally, but drivers do not need which operation is being run. Change-Id: I482691baa09ec07e119db4ae6b6be715a6c747eb Signed-off-by: Masahiro Yamada --- diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c index 18f1d822ee..2c21697172 100644 --- a/drivers/mmc/sdhci.c +++ b/drivers/mmc/sdhci.c @@ -215,6 +215,10 @@ static int sdhci_transfer_data(struct sdhci_host *host, struct mmc_data *data) return -ETIMEDOUT; } } while (!(stat & SDHCI_INT_DATA_END)); + + dma_unmap_single(host->start_addr, data->blocks * data->blocksize, + mmc_get_dma_dir(data)); + return 0; }