Hello Linus, Please pull in to receive the dmaengine fixes for this cycle which consist of bunch of driver fixes with idxd ones being the biggest bunch The following changes since commit 6de23f81a5e08be8fbf5e8d7e9febc72a5b5f27f: Linux 7.0-rc1 (2026-02-22 13:18:59 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git tags/dmaengine-fix-7.0 for you to fetch changes up to a17ce4bc6f4f9acf77ba416c36791a15602e53aa: dmaengine: xilinx_dma: Fix reset related timeout with two-channel AXIDMA (2026-03-17 16:33:32 +0530) ---------------------------------------------------------------- dmaengine fixes for v7.0 Bunch of driver fixes for: - Xilinx regmap init error handling, dma_device directions, residue calculation, reset related timeout fixes. - Renesas CHCTRL updates and driver list fixes - DW HDMA cycle bits and MSI data programming fix - IDXD pile of fixes for memeory leak and FLR fixes ---------------------------------------------------------------- Alexander Stein (1): dmaengine: xilinx: xdma: Fix regmap init error handling Claudiu Beznea (2): dmaengine: sh: rz-dmac: Protect the driver specific lists dmaengine: sh: rz-dmac: Move CHCTRL updates under spinlock Joy Zou (1): dmaengine: fsl-edma: fix channel parameter config for fixed channel requests LUO Haowen (1): dmaengine: dw-edma: Fix multiple times setting of the CYCLE_STATE and CYCLE_BIT bits for HDMA. Marek Vasut (3): dmaengine: xilinx: xilinx_dma: Fix dma_device directions dmaengine: xilinx: xilinx_dma: Fix residue calculation for cyclic DMA dmaengine: xilinx: xilinx_dma: Fix unmasked residue subtraction Shenghui Shi (1): dmaengine: dw-edma: fix MSI data programming for multi-IRQ case Tomi Valkeinen (1): dmaengine: xilinx_dma: Fix reset related timeout with two-channel AXIDMA Tuo Li (1): dmaengine: idxd: fix possible wrong descriptor completion in llist_abort_desc() Vinicius Costa Gomes (10): dmaengine: idxd: Fix lockdep warnings when calling idxd_device_config() dmaengine: idxd: Fix crash when the event log is disabled dmaengine: idxd: Fix possible invalid memory access after FLR dmaengine: idxd: Flush kernel workqueues on Function Level Reset dmaengine: idxd: Flush all pending descriptors dmaengine: idxd: Wait for submitted operations on .device_synchronize() dmaengine: idxd: Fix not releasing workqueue on .release() dmaengine: idxd: Fix memory leak when a wq is reset dmaengine: idxd: Fix freeing the allocated ida too late dmaengine: idxd: Fix leaking event log memory drivers/dma/dw-edma/dw-edma-core.c | 8 +++-- drivers/dma/dw-edma/dw-hdma-v0-core.c | 6 ++-- drivers/dma/fsl-edma-main.c | 26 ++++++-------- drivers/dma/idxd/cdev.c | 8 ++--- drivers/dma/idxd/device.c | 45 +++++++++++++++-------- drivers/dma/idxd/dma.c | 18 ++++++++++ drivers/dma/idxd/idxd.h | 1 + drivers/dma/idxd/init.c | 14 ++++---- drivers/dma/idxd/irq.c | 16 +++++++++ drivers/dma/idxd/submit.c | 2 +- drivers/dma/idxd/sysfs.c | 1 + drivers/dma/sh/rz-dmac.c | 68 +++++++++++++++++++---------------- drivers/dma/xilinx/xdma.c | 4 +-- drivers/dma/xilinx/xilinx_dma.c | 46 +++++++++++++++--------- 14 files changed, 168 insertions(+), 95 deletions(-) -- ~Vinod