Skip to content

Commit d021ae7

Browse files
Hieu Nguyentiennguyenzg
authored andcommitted
drivers: dma: Add DMA support for Renesas RZ/V2L, A3UL, T2M, N2L
Add DMA driver support for Renesas RZ/V2L, A3UL, T2M, N2L Signed-off-by: Hieu Nguyen <[email protected]> Signed-off-by: Tien Nguyen <[email protected]>
1 parent 1396351 commit d021ae7

File tree

8 files changed

+396
-139
lines changed

8 files changed

+396
-139
lines changed

drivers/dma/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ zephyr_library_sources_ifdef(CONFIG_DMA_MCHP_XEC dma_mchp_xec.c)
3535
zephyr_library_sources_ifdef(CONFIG_DMA_XMC4XXX dma_xmc4xxx.c)
3636
zephyr_library_sources_ifdef(CONFIG_DMA_RPI_PICO dma_rpi_pico.c)
3737
zephyr_library_sources_ifdef(CONFIG_DMA_RENESAS_RA dma_renesas_ra.c)
38-
zephyr_library_sources_ifdef(CONFIG_DMA_RENESAS_RZ dma_renesas_rz.c)
38+
zephyr_library_sources_ifdef(CONFIG_DMA_RENESAS_RZ_DMAC dma_renesas_rz.c)
39+
zephyr_library_sources_ifdef(CONFIG_DMA_RENESAS_RZ_DMAC_B dma_renesas_rz.c)
3940
zephyr_library_sources_ifdef(CONFIG_MCUX_PXP dma_mcux_pxp.c)
4041
zephyr_library_sources_ifdef(CONFIG_DMA_MAX32 dma_max32.c)
4142
zephyr_library_sources_ifdef(CONFIG_DMA_MCUX_SMARTDMA dma_mcux_smartdma.c)

drivers/dma/Kconfig.renesas_rz

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
1-
# Copyright (c) 2024 Renesas Electronics Corporation
1+
# Copyright (c) 2024-2025 Renesas Electronics Corporation
22
# SPDX-License-Identifier: Apache-2.0
33

4-
config DMA_RENESAS_RZ
4+
config DMA_RENESAS_RZ_DMAC
55
bool "Renesas RZ DMAC"
66
default y
7-
depends on DT_HAS_RENESAS_RZ_DMA_ENABLED
8-
select USE_RZ_FSP_DMA
7+
depends on DT_HAS_RENESAS_RZ_DMAC_ENABLED
8+
select USE_RZ_FSP_DMAC
99
help
10-
Enable Renesas RZ DMA Driver.
10+
Enable Renesas RZ DMAC Driver.
11+
12+
config DMA_RENESAS_RZ_DMAC_B
13+
bool "Renesas RZ DMAC_B"
14+
default y
15+
depends on DT_HAS_RENESAS_RZ_DMAC_B_ENABLED
16+
select USE_RZ_FSP_DMAC_B
17+
help
18+
Enable Renesas RZ DMAC_B Driver.

0 commit comments

Comments
 (0)