upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
687 B
22 lines
687 B
menu "DMA Support"
|
|
|
|
config DMA
|
|
bool "Enable Driver Model for DMA drivers"
|
|
depends on DM
|
|
help
|
|
Enable driver model for DMA. DMA engines can do
|
|
asynchronous data transfers without involving the host
|
|
CPU. Currently, this framework can be used to offload
|
|
memory copies to and from devices like qspi, ethernet
|
|
etc Drivers provide methods to access the DMA devices
|
|
buses that is used to transfer data to and from memory.
|
|
The uclass interface is defined in include/dma.h.
|
|
|
|
config TI_EDMA3
|
|
bool "TI EDMA3 driver"
|
|
help
|
|
Enable the TI EDMA3 driver for DRA7xx and AM43xx evms.
|
|
This driver support data transfer between memory
|
|
regions.
|
|
|
|
endmenu # menu "DMA Support"
|
|
|