1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (c) 2011 5 * Ben Gray <ben.r.gray@gmail.com>. 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 17 * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 * 29 * $FreeBSD$ 30 */ 31 #ifndef __TI_SDMAREG_H__ 32 #define __TI_SDMAREG_H__ 33 34 /** 35 * The number of DMA channels possible on the controller. 36 */ 37 #define NUM_DMA_CHANNELS 32 38 #define NUM_DMA_IRQS 4 39 40 /** 41 * Register offsets 42 */ 43 #define DMA4_REVISION 0x0000 44 #define DMA4_IRQSTATUS_L(j) (0x0008 + ((j) * 0x4)) 45 #define DMA4_IRQENABLE_L(j) (0x0018 + ((j) * 0x4)) 46 #define DMA4_SYSSTATUS 0x0028 47 #define DMA4_OCP_SYSCONFIG 0x002C 48 #define DMA4_CAPS_0 0x0064 49 #define DMA4_CAPS_2 0x006C 50 #define DMA4_CAPS_3 0x0070 51 #define DMA4_CAPS_4 0x0074 52 #define DMA4_GCR 0x0078 53 #define DMA4_CCR(i) (0x0080 + ((i) * 0x60)) 54 #define DMA4_CLNK_CTRL(i) (0x0084 + ((i) * 0x60)) 55 #define DMA4_CICR(i) (0x0088 + ((i) * 0x60)) 56 #define DMA4_CSR(i) (0x008C + ((i) * 0x60)) 57 #define DMA4_CSDP(i) (0x0090 + ((i) * 0x60)) 58 #define DMA4_CEN(i) (0x0094 + ((i) * 0x60)) 59 #define DMA4_CFN(i) (0x0098 + ((i) * 0x60)) 60 #define DMA4_CSSA(i) (0x009C + ((i) * 0x60)) 61 #define DMA4_CDSA(i) (0x00A0 + ((i) * 0x60)) 62 #define DMA4_CSE(i) (0x00A4 + ((i) * 0x60)) 63 #define DMA4_CSF(i) (0x00A8 + ((i) * 0x60)) 64 #define DMA4_CDE(i) (0x00AC + ((i) * 0x60)) 65 #define DMA4_CDF(i) (0x00B0 + ((i) * 0x60)) 66 #define DMA4_CSAC(i) (0x00B4 + ((i) * 0x60)) 67 #define DMA4_CDAC(i) (0x00B8 + ((i) * 0x60)) 68 #define DMA4_CCEN(i) (0x00BC + ((i) * 0x60)) 69 #define DMA4_CCFN(i) (0x00C0 + ((i) * 0x60)) 70 #define DMA4_COLOR(i) (0x00C4 + ((i) * 0x60)) 71 72 /* The following register are only defined on OMAP44xx (and newer?) */ 73 #define DMA4_CDP(i) (0x00D0 + ((i) * 0x60)) 74 #define DMA4_CNDP(i) (0x00D4 + ((i) * 0x60)) 75 #define DMA4_CCDN(i) (0x00D8 + ((i) * 0x60)) 76 77 /** 78 * Various register field settings 79 */ 80 #define DMA4_CSDP_DATA_TYPE(x) (((x) & 0x3) << 0) 81 #define DMA4_CSDP_SRC_BURST_MODE(x) (((x) & 0x3) << 7) 82 #define DMA4_CSDP_DST_BURST_MODE(x) (((x) & 0x3) << 14) 83 #define DMA4_CSDP_SRC_ENDIANISM(x) (((x) & 0x1) << 21) 84 #define DMA4_CSDP_DST_ENDIANISM(x) (((x) & 0x1) << 19) 85 #define DMA4_CSDP_WRITE_MODE(x) (((x) & 0x3) << 16) 86 #define DMA4_CSDP_SRC_PACKED(x) (((x) & 0x1) << 6) 87 #define DMA4_CSDP_DST_PACKED(x) (((x) & 0x1) << 13) 88 89 #define DMA4_CCR_DST_ADDRESS_MODE(x) (((x) & 0x3) << 14) 90 #define DMA4_CCR_SRC_ADDRESS_MODE(x) (((x) & 0x3) << 12) 91 #define DMA4_CCR_READ_PRIORITY(x) (((x) & 0x1) << 6) 92 #define DMA4_CCR_WRITE_PRIORITY(x) (((x) & 0x1) << 26) 93 #define DMA4_CCR_SYNC_TRIGGER(x) ((((x) & 0x60) << 14) \ 94 | ((x) & 0x1f)) 95 #define DMA4_CCR_FRAME_SYNC(x) (((x) & 0x1) << 5) 96 #define DMA4_CCR_BLOCK_SYNC(x) (((x) & 0x1) << 18) 97 #define DMA4_CCR_SEL_SRC_DST_SYNC(x) (((x) & 0x1) << 24) 98 99 #define DMA4_CCR_PACKET_TRANS (DMA4_CCR_FRAME_SYNC(1) | \ 100 DMA4_CCR_BLOCK_SYNC(1) ) 101 102 #define DMA4_CSR_DROP (1UL << 1) 103 #define DMA4_CSR_HALF (1UL << 2) 104 #define DMA4_CSR_FRAME (1UL << 3) 105 #define DMA4_CSR_LAST (1UL << 4) 106 #define DMA4_CSR_BLOCK (1UL << 5) 107 #define DMA4_CSR_SYNC (1UL << 6) 108 #define DMA4_CSR_PKT (1UL << 7) 109 #define DMA4_CSR_TRANS_ERR (1UL << 8) 110 #define DMA4_CSR_SECURE_ERR (1UL << 9) 111 #define DMA4_CSR_SUPERVISOR_ERR (1UL << 10) 112 #define DMA4_CSR_MISALIGNED_ADRS_ERR (1UL << 11) 113 #define DMA4_CSR_DRAIN_END (1UL << 12) 114 #define DMA4_CSR_CLEAR_MASK (0xffe) 115 116 #define DMA4_CICR_DROP_IE (1UL << 1) 117 #define DMA4_CICR_HALF_IE (1UL << 2) 118 #define DMA4_CICR_FRAME_IE (1UL << 3) 119 #define DMA4_CICR_LAST_IE (1UL << 4) 120 #define DMA4_CICR_BLOCK_IE (1UL << 5) 121 #define DMA4_CICR_PKT_IE (1UL << 7) 122 #define DMA4_CICR_TRANS_ERR_IE (1UL << 8) 123 #define DMA4_CICR_SECURE_ERR_IE (1UL << 9) 124 #define DMA4_CICR_SUPERVISOR_ERR_IE (1UL << 10) 125 #define DMA4_CICR_MISALIGNED_ADRS_ERR_IE (1UL << 11) 126 #define DMA4_CICR_DRAIN_IE (1UL << 12) 127 128 /** 129 * The following H/W revision values were found be experimentation, TI don't 130 * publish the revision numbers. The TRM says "TI internal Data". 131 */ 132 #define DMA4_OMAP3_REV 0x00000040 133 #define DMA4_OMAP4_REV 0x00010900 134 135 #endif /* __TI_SDMAREG_H__ */ 136