2023-04-29 09:55:20 +08:00
|
|
|
# Copyright (c) 2020-2023, NXP
|
2020-08-15 05:02:38 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
config DMA_MCUX_LPC
|
2022-03-09 19:05:12 +08:00
|
|
|
bool "MCUX LPC DMAC driver"
|
2022-08-25 03:30:39 +08:00
|
|
|
default y
|
|
|
|
depends on DT_HAS_NXP_LPC_DMA_ENABLED
|
2020-08-15 05:02:38 +08:00
|
|
|
help
|
|
|
|
DMA driver for MCUX LPC MCUs.
|
|
|
|
|
|
|
|
if DMA_MCUX_LPC
|
|
|
|
|
2023-04-29 09:55:20 +08:00
|
|
|
config DMA_NUMBER_OF_DESCRIPTORS
|
|
|
|
int "Number of DMA descriptors to use"
|
|
|
|
default 16
|
2020-08-15 05:02:38 +08:00
|
|
|
help
|
2023-04-29 09:55:20 +08:00
|
|
|
Each DMA descriptor can be used to transfer (1024*width) bytes of data.
|
|
|
|
Increase or decrease this value depending on the max number of data
|
|
|
|
transferred by the application.
|
2020-08-15 05:02:38 +08:00
|
|
|
|
|
|
|
endif # DMA_MCUX_LPC
|