18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci/****************************************************************************/ 38c2ecf20Sopenharmony_ci 48c2ecf20Sopenharmony_ci/* 58c2ecf20Sopenharmony_ci * mcfdma.h -- Coldfire internal DMA support defines. 68c2ecf20Sopenharmony_ci * 78c2ecf20Sopenharmony_ci * (C) Copyright 1999, Rob Scott (rscott@mtrob.ml.org) 88c2ecf20Sopenharmony_ci */ 98c2ecf20Sopenharmony_ci 108c2ecf20Sopenharmony_ci/****************************************************************************/ 118c2ecf20Sopenharmony_ci#ifndef mcfdma_h 128c2ecf20Sopenharmony_ci#define mcfdma_h 138c2ecf20Sopenharmony_ci/****************************************************************************/ 148c2ecf20Sopenharmony_ci 158c2ecf20Sopenharmony_ci#if !defined(CONFIG_M5272) 168c2ecf20Sopenharmony_ci 178c2ecf20Sopenharmony_ci/* 188c2ecf20Sopenharmony_ci * Define the DMA register set addresses. 198c2ecf20Sopenharmony_ci * Note: these are longword registers, use unsigned long as data type 208c2ecf20Sopenharmony_ci */ 218c2ecf20Sopenharmony_ci#define MCFDMA_SAR 0x00 /* DMA source address (r/w) */ 228c2ecf20Sopenharmony_ci#define MCFDMA_DAR 0x01 /* DMA destination adr (r/w) */ 238c2ecf20Sopenharmony_ci/* these are word registers, use unsigned short data type */ 248c2ecf20Sopenharmony_ci#define MCFDMA_DCR 0x04 /* DMA control reg (r/w) */ 258c2ecf20Sopenharmony_ci#define MCFDMA_BCR 0x06 /* DMA byte count reg (r/w) */ 268c2ecf20Sopenharmony_ci/* these are byte registers, use unsiged char data type */ 278c2ecf20Sopenharmony_ci#define MCFDMA_DSR 0x10 /* DMA status reg (r/w) */ 288c2ecf20Sopenharmony_ci#define MCFDMA_DIVR 0x14 /* DMA interrupt vec (r/w) */ 298c2ecf20Sopenharmony_ci 308c2ecf20Sopenharmony_ci/* 318c2ecf20Sopenharmony_ci * Bit definitions for the DMA Control Register (DCR). 328c2ecf20Sopenharmony_ci */ 338c2ecf20Sopenharmony_ci#define MCFDMA_DCR_INT 0x8000 /* Enable completion irq */ 348c2ecf20Sopenharmony_ci#define MCFDMA_DCR_EEXT 0x4000 /* Enable external DMA req */ 358c2ecf20Sopenharmony_ci#define MCFDMA_DCR_CS 0x2000 /* Enable cycle steal */ 368c2ecf20Sopenharmony_ci#define MCFDMA_DCR_AA 0x1000 /* Enable auto alignment */ 378c2ecf20Sopenharmony_ci#define MCFDMA_DCR_BWC_MASK 0x0E00 /* Bandwidth ctl mask */ 388c2ecf20Sopenharmony_ci#define MCFDMA_DCR_BWC_512 0x0200 /* Bandwidth: 512 Bytes */ 398c2ecf20Sopenharmony_ci#define MCFDMA_DCR_BWC_1024 0x0400 /* Bandwidth: 1024 Bytes */ 408c2ecf20Sopenharmony_ci#define MCFDMA_DCR_BWC_2048 0x0600 /* Bandwidth: 2048 Bytes */ 418c2ecf20Sopenharmony_ci#define MCFDMA_DCR_BWC_4096 0x0800 /* Bandwidth: 4096 Bytes */ 428c2ecf20Sopenharmony_ci#define MCFDMA_DCR_BWC_8192 0x0a00 /* Bandwidth: 8192 Bytes */ 438c2ecf20Sopenharmony_ci#define MCFDMA_DCR_BWC_16384 0x0c00 /* Bandwidth: 16384 Bytes */ 448c2ecf20Sopenharmony_ci#define MCFDMA_DCR_BWC_32768 0x0e00 /* Bandwidth: 32768 Bytes */ 458c2ecf20Sopenharmony_ci#define MCFDMA_DCR_SAA 0x0100 /* Single Address Access */ 468c2ecf20Sopenharmony_ci#define MCFDMA_DCR_S_RW 0x0080 /* SAA read/write value */ 478c2ecf20Sopenharmony_ci#define MCFDMA_DCR_SINC 0x0040 /* Source addr inc enable */ 488c2ecf20Sopenharmony_ci#define MCFDMA_DCR_SSIZE_MASK 0x0030 /* Src xfer size */ 498c2ecf20Sopenharmony_ci#define MCFDMA_DCR_SSIZE_LONG 0x0000 /* Src xfer size, 00 = longw */ 508c2ecf20Sopenharmony_ci#define MCFDMA_DCR_SSIZE_BYTE 0x0010 /* Src xfer size, 01 = byte */ 518c2ecf20Sopenharmony_ci#define MCFDMA_DCR_SSIZE_WORD 0x0020 /* Src xfer size, 10 = word */ 528c2ecf20Sopenharmony_ci#define MCFDMA_DCR_SSIZE_LINE 0x0030 /* Src xfer size, 11 = line */ 538c2ecf20Sopenharmony_ci#define MCFDMA_DCR_DINC 0x0008 /* Dest addr inc enable */ 548c2ecf20Sopenharmony_ci#define MCFDMA_DCR_DSIZE_MASK 0x0006 /* Dest xfer size */ 558c2ecf20Sopenharmony_ci#define MCFDMA_DCR_DSIZE_LONG 0x0000 /* Dest xfer size, 00 = long */ 568c2ecf20Sopenharmony_ci#define MCFDMA_DCR_DSIZE_BYTE 0x0002 /* Dest xfer size, 01 = byte */ 578c2ecf20Sopenharmony_ci#define MCFDMA_DCR_DSIZE_WORD 0x0004 /* Dest xfer size, 10 = word */ 588c2ecf20Sopenharmony_ci#define MCFDMA_DCR_DSIZE_LINE 0x0006 /* Dest xfer size, 11 = line */ 598c2ecf20Sopenharmony_ci#define MCFDMA_DCR_START 0x0001 /* Start transfer */ 608c2ecf20Sopenharmony_ci 618c2ecf20Sopenharmony_ci/* 628c2ecf20Sopenharmony_ci * Bit definitions for the DMA Status Register (DSR). 638c2ecf20Sopenharmony_ci */ 648c2ecf20Sopenharmony_ci#define MCFDMA_DSR_CE 0x40 /* Config error */ 658c2ecf20Sopenharmony_ci#define MCFDMA_DSR_BES 0x20 /* Bus Error on source */ 668c2ecf20Sopenharmony_ci#define MCFDMA_DSR_BED 0x10 /* Bus Error on dest */ 678c2ecf20Sopenharmony_ci#define MCFDMA_DSR_REQ 0x04 /* Requests remaining */ 688c2ecf20Sopenharmony_ci#define MCFDMA_DSR_BSY 0x02 /* Busy */ 698c2ecf20Sopenharmony_ci#define MCFDMA_DSR_DONE 0x01 /* DMA transfer complete */ 708c2ecf20Sopenharmony_ci 718c2ecf20Sopenharmony_ci#else /* This is an MCF5272 */ 728c2ecf20Sopenharmony_ci 738c2ecf20Sopenharmony_ci#define MCFDMA_DMR 0x00 /* Mode Register (r/w) */ 748c2ecf20Sopenharmony_ci#define MCFDMA_DIR 0x03 /* Interrupt trigger register (r/w) */ 758c2ecf20Sopenharmony_ci#define MCFDMA_DSAR 0x03 /* Source Address register (r/w) */ 768c2ecf20Sopenharmony_ci#define MCFDMA_DDAR 0x04 /* Destination Address register (r/w) */ 778c2ecf20Sopenharmony_ci#define MCFDMA_DBCR 0x02 /* Byte Count Register (r/w) */ 788c2ecf20Sopenharmony_ci 798c2ecf20Sopenharmony_ci/* Bit definitions for the DMA Mode Register (DMR) */ 808c2ecf20Sopenharmony_ci#define MCFDMA_DMR_RESET 0x80000000L /* Reset bit */ 818c2ecf20Sopenharmony_ci#define MCFDMA_DMR_EN 0x40000000L /* DMA enable */ 828c2ecf20Sopenharmony_ci#define MCFDMA_DMR_RQM 0x000C0000L /* Request Mode Mask */ 838c2ecf20Sopenharmony_ci#define MCFDMA_DMR_RQM_DUAL 0x000C0000L /* Dual address mode, the only valid mode */ 848c2ecf20Sopenharmony_ci#define MCFDMA_DMR_DSTM 0x00002000L /* Destination addressing mask */ 858c2ecf20Sopenharmony_ci#define MCFDMA_DMR_DSTM_SA 0x00000000L /* Destination uses static addressing */ 868c2ecf20Sopenharmony_ci#define MCFDMA_DMR_DSTM_IA 0x00002000L /* Destination uses incremental addressing */ 878c2ecf20Sopenharmony_ci#define MCFDMA_DMR_DSTT_UD 0x00000400L /* Destination is user data */ 888c2ecf20Sopenharmony_ci#define MCFDMA_DMR_DSTT_UC 0x00000800L /* Destination is user code */ 898c2ecf20Sopenharmony_ci#define MCFDMA_DMR_DSTT_SD 0x00001400L /* Destination is supervisor data */ 908c2ecf20Sopenharmony_ci#define MCFDMA_DMR_DSTT_SC 0x00001800L /* Destination is supervisor code */ 918c2ecf20Sopenharmony_ci#define MCFDMA_DMR_DSTS_OFF 0x8 /* offset to the destination size bits */ 928c2ecf20Sopenharmony_ci#define MCFDMA_DMR_DSTS_LONG 0x00000000L /* Long destination size */ 938c2ecf20Sopenharmony_ci#define MCFDMA_DMR_DSTS_BYTE 0x00000100L /* Byte destination size */ 948c2ecf20Sopenharmony_ci#define MCFDMA_DMR_DSTS_WORD 0x00000200L /* Word destination size */ 958c2ecf20Sopenharmony_ci#define MCFDMA_DMR_DSTS_LINE 0x00000300L /* Line destination size */ 968c2ecf20Sopenharmony_ci#define MCFDMA_DMR_SRCM 0x00000020L /* Source addressing mask */ 978c2ecf20Sopenharmony_ci#define MCFDMA_DMR_SRCM_SA 0x00000000L /* Source uses static addressing */ 988c2ecf20Sopenharmony_ci#define MCFDMA_DMR_SRCM_IA 0x00000020L /* Source uses incremental addressing */ 998c2ecf20Sopenharmony_ci#define MCFDMA_DMR_SRCT_UD 0x00000004L /* Source is user data */ 1008c2ecf20Sopenharmony_ci#define MCFDMA_DMR_SRCT_UC 0x00000008L /* Source is user code */ 1018c2ecf20Sopenharmony_ci#define MCFDMA_DMR_SRCT_SD 0x00000014L /* Source is supervisor data */ 1028c2ecf20Sopenharmony_ci#define MCFDMA_DMR_SRCT_SC 0x00000018L /* Source is supervisor code */ 1038c2ecf20Sopenharmony_ci#define MCFDMA_DMR_SRCS_OFF 0x0 /* Offset to the source size bits */ 1048c2ecf20Sopenharmony_ci#define MCFDMA_DMR_SRCS_LONG 0x00000000L /* Long source size */ 1058c2ecf20Sopenharmony_ci#define MCFDMA_DMR_SRCS_BYTE 0x00000001L /* Byte source size */ 1068c2ecf20Sopenharmony_ci#define MCFDMA_DMR_SRCS_WORD 0x00000002L /* Word source size */ 1078c2ecf20Sopenharmony_ci#define MCFDMA_DMR_SRCS_LINE 0x00000003L /* Line source size */ 1088c2ecf20Sopenharmony_ci 1098c2ecf20Sopenharmony_ci/* Bit definitions for the DMA interrupt register (DIR) */ 1108c2ecf20Sopenharmony_ci#define MCFDMA_DIR_INVEN 0x1000 /* Invalid Combination interrupt enable */ 1118c2ecf20Sopenharmony_ci#define MCFDMA_DIR_ASCEN 0x0800 /* Address Sequence Complete (Completion) interrupt enable */ 1128c2ecf20Sopenharmony_ci#define MCFDMA_DIR_TEEN 0x0200 /* Transfer Error interrupt enable */ 1138c2ecf20Sopenharmony_ci#define MCFDMA_DIR_TCEN 0x0100 /* Transfer Complete (a bus transfer, that is) interrupt enable */ 1148c2ecf20Sopenharmony_ci#define MCFDMA_DIR_INV 0x0010 /* Invalid Combination */ 1158c2ecf20Sopenharmony_ci#define MCFDMA_DIR_ASC 0x0008 /* Address Sequence Complete (DMA Completion) */ 1168c2ecf20Sopenharmony_ci#define MCFDMA_DIR_TE 0x0002 /* Transfer Error */ 1178c2ecf20Sopenharmony_ci#define MCFDMA_DIR_TC 0x0001 /* Transfer Complete */ 1188c2ecf20Sopenharmony_ci 1198c2ecf20Sopenharmony_ci#endif /* !defined(CONFIG_M5272) */ 1208c2ecf20Sopenharmony_ci 1218c2ecf20Sopenharmony_ci/****************************************************************************/ 1228c2ecf20Sopenharmony_ci#endif /* mcfdma_h */ 123