1/* $NetBSD: fsl-edma.h,v 1.1.1.1 2026/01/18 05:21:43 skrll Exp $ */ 2 3/* SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause */ 4 5#ifndef _FSL_EDMA_DT_BINDING_H_ 6#define _FSL_EDMA_DT_BINDING_H_ 7 8/* Receive Channel */ 9#define FSL_EDMA_RX 0x1 10 11/* iMX8 audio remote DMA */ 12#define FSL_EDMA_REMOTE 0x2 13 14/* FIFO is continue memory region */ 15#define FSL_EDMA_MULTI_FIFO 0x4 16 17/* Channel need stick to even channel */ 18#define FSL_EDMA_EVEN_CH 0x8 19 20/* Channel need stick to odd channel */ 21#define FSL_EDMA_ODD_CH 0x10 22 23#endif 24