Add support for the Renesas RA Direct Memory Access Controller, including driver source files, Kconfig options, and DTS bindings. - Add initial implementation of the RA DMAC driver - Add dedicated Kconfig and CMake integration - Provide Devicetree bindings for the RA DMAC - Update module Kconfig to include the new driver This enables DMA functionality on Renesas RA series MCUs. Signed-off-by: Khanh Nguyen <khanh.nguyen.wz@bp.renesas.com>
11 lines
253 B
Plaintext
11 lines
253 B
Plaintext
# Copyright (c) 2025 Renesas Electronics Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config DMA_RENESAS_RA
|
|
bool "Renesas RA DMAC"
|
|
default y
|
|
depends on DT_HAS_RENESAS_RA_DMA_ENABLED
|
|
select USE_RA_FSP_DMA
|
|
help
|
|
Enable Renesas RA DMA Driver.
|