Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions boards/renesas/rza3ul_smarc/rza3ul_smarc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ supported:
- adc
- i2c
- counter
- dma
testing:
ignore_tags:
- bluetooth
1 change: 1 addition & 0 deletions boards/renesas/rzn2l_rsk/rzn2l_rsk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ supported:
- adc
- i2c
- counter
- dma
vendor: renesas
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ supported:
- adc
- i2c
- counter
- dma
vendor: renesas
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ supported:
- i2c
- counter
- mbox
- dma
vendor: renesas
3 changes: 2 additions & 1 deletion drivers/dma/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ zephyr_library_sources_ifdef(CONFIG_DMA_MCHP_XEC dma_mchp_xec.c)
zephyr_library_sources_ifdef(CONFIG_DMA_XMC4XXX dma_xmc4xxx.c)
zephyr_library_sources_ifdef(CONFIG_DMA_RPI_PICO dma_rpi_pico.c)
zephyr_library_sources_ifdef(CONFIG_DMA_RENESAS_RA dma_renesas_ra.c)
zephyr_library_sources_ifdef(CONFIG_DMA_RENESAS_RZ dma_renesas_rz.c)
zephyr_library_sources_ifdef(CONFIG_DMA_RENESAS_RZ_DMAC dma_renesas_rz.c)
zephyr_library_sources_ifdef(CONFIG_DMA_RENESAS_RZ_DMAC_B dma_renesas_rz.c)
zephyr_library_sources_ifdef(CONFIG_MCUX_PXP dma_mcux_pxp.c)
zephyr_library_sources_ifdef(CONFIG_DMA_MAX32 dma_max32.c)
zephyr_library_sources_ifdef(CONFIG_DMA_MCUX_SMARTDMA dma_mcux_smartdma.c)
Expand Down
18 changes: 13 additions & 5 deletions drivers/dma/Kconfig.renesas_rz
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
# Copyright (c) 2024 Renesas Electronics Corporation
# Copyright (c) 2024-2025 Renesas Electronics Corporation
# SPDX-License-Identifier: Apache-2.0

config DMA_RENESAS_RZ
config DMA_RENESAS_RZ_DMAC
bool "Renesas RZ DMAC"
default y
depends on DT_HAS_RENESAS_RZ_DMA_ENABLED
select USE_RZ_FSP_DMA
depends on DT_HAS_RENESAS_RZ_DMAC_ENABLED
select USE_RZ_FSP_DMAC
help
Enable Renesas RZ DMA Driver.
Enable Renesas RZ DMAC Driver.

config DMA_RENESAS_RZ_DMAC_B
bool "Renesas RZ DMAC_B"
default y
depends on DT_HAS_RENESAS_RZ_DMAC_B_ENABLED
select USE_RZ_FSP_DMAC_B
help
Enable Renesas RZ DMAC_B Driver.
Loading
Loading