c504e1e5cd
The Microchip XEC family of microcontrollers includes a simple DMA block implementing multiple channels. DMA supports memory to memory, memory to peripheral, and peripheral to memory transfers. Peripheral support is limited by each chip to I2C and SPI controllers. DMA hardware does not support scatter-gather or linked transactions. Signed-off-by: Jay Vasanth <jay.vasanth@microchip.com>
12 lines
299 B
Plaintext
12 lines
299 B
Plaintext
# Microchip XEC DMAC configuration options
|
|
|
|
# Copyright (c) 2023 Microchip Technology Inc.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config DMA_MCHP_XEC
|
|
bool "Microchip XEC series DMAC driver"
|
|
default y
|
|
depends on DT_HAS_MICROCHIP_XEC_DMAC_ENABLED
|
|
help
|
|
DMA driver for Microchip XEC series MCUs.
|