mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-12-09 20:44:12 +08:00
* Append WT attribute. * Change the API with pool size only. * Add address mask for DMA * Change DMA lock to mutex * Add pause callback for DMA engine driver * Add DMA Engine test * Add ARM PL330 DMA Engine driver
18 lines
369 B
Plaintext
18 lines
369 B
Plaintext
menuconfig RT_USING_DMA
|
|
bool "Using Direct Memory Access (DMA)"
|
|
depends on RT_USING_DM
|
|
select RT_USING_ADT
|
|
select RT_USING_ADT_BITMAP
|
|
default n
|
|
|
|
config RT_DMA_PL330
|
|
bool "ARM PL330"
|
|
depends on RT_USING_DMA
|
|
depends on RT_USING_CLK
|
|
depends on RT_USING_RESET
|
|
default n
|
|
|
|
if RT_USING_DMA
|
|
osource "$(SOC_DM_DMA_DIR)/Kconfig"
|
|
endif
|