summaryrefslogtreecommitdiff
path: root/drivers/mtd
diff options
context:
space:
mode:
authorVignesh Raghavendra <vigneshr@ti.com>2020-09-17 14:23:08 +0300
committerStefan Roese <sr@denx.de>2020-10-08 10:04:41 +0300
commit3f891a103c5c90c186a5a0b1584dfa39e8688b8f (patch)
treefc764bfed0cf22b47a8148fb7d15f3bd664e937c /drivers/mtd
parent8995a86cd6fa6e189c03a638da4a8ef9755d3738 (diff)
downloadu-boot-3f891a103c5c90c186a5a0b1584dfa39e8688b8f.tar.xz
mtd: cfi_mtd: Use DMA for reads
When possible use DMA for reading from CFI flash, this provides upto 5x improvement in read performance with high speed CFI compliant flashes like HyperFlash. Code will gracefully fallback to CPU copy when DMA is unavailable. Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com> Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'drivers/mtd')
-rw-r--r--drivers/mtd/cfi_mtd.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/mtd/cfi_mtd.c b/drivers/mtd/cfi_mtd.c
index a5bb0962e5..78293caa2f 100644
--- a/drivers/mtd/cfi_mtd.c
+++ b/drivers/mtd/cfi_mtd.c
@@ -6,6 +6,7 @@
*/
#include <common.h>
+#include <dma.h>
#include <flash.h>
#include <malloc.h>
@@ -70,7 +71,8 @@ static int cfi_mtd_read(struct mtd_info *mtd, loff_t from, size_t len,
flash_info_t *fi = mtd->priv;
u_char *f = (u_char*)(fi->start[0]) + from;
- memcpy(buf, f, len);
+ if (dma_memcpy(buf, f, len) < 0)
+ memcpy(buf, f, len);
*retlen = len;
return 0;