Skip to content
Snippets Groups Projects
Commit fc5e2200 authored by Vignesh R's avatar Vignesh R Committed by Jagan Teki
Browse files

ARM: dra7xx_evm: Enable EDMA3 in SPL to support DMA on qspi


Enable TI_EDMA3 and SPL_DMA support, so as to reduce boot time. With
DMA enabled there is almost 3x improvement in read performance. This
helps in reducing boot time in qspiboot mode

Also add EDMA3 base address for DRA7XX and AM57XX.

Signed-off-by: default avatarVignesh R <vigneshr@ti.com>
Reviewed-by: default avatarJagan Teki <jteki@openedev.com>
parent 8ddd9c48
No related branches found
No related tags found
No related merge requests found
...@@ -23,4 +23,9 @@ ...@@ -23,4 +23,9 @@
/* GPMC Base address */ /* GPMC Base address */
#define GPMC_BASE 0x50000000 #define GPMC_BASE 0x50000000
/* EDMA3 Base address for DRA7XX and AM57XX */
#if defined(CONFIG_DRA7XX) || defined(CONFIG_AM57XX)
#define EDMA3_BASE 0x43300000
#endif
#endif #endif
...@@ -166,6 +166,8 @@ ...@@ -166,6 +166,8 @@
/* SPI SPL */ /* SPI SPL */
#define CONFIG_SPL_SPI_SUPPORT #define CONFIG_SPL_SPI_SUPPORT
#define CONFIG_SPL_DMA_SUPPORT
#define CONFIG_TI_EDMA3
#define CONFIG_SPL_SPI_LOAD #define CONFIG_SPL_SPI_LOAD
#define CONFIG_SPL_SPI_FLASH_SUPPORT #define CONFIG_SPL_SPI_FLASH_SUPPORT
#define CONFIG_SYS_SPI_U_BOOT_OFFS 0x40000 #define CONFIG_SYS_SPI_U_BOOT_OFFS 0x40000
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment