Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1 | /* |
| 2 | * EDMA3 support for DaVinci |
| 3 | * |
| 4 | * Copyright (C) 2006-2009 Texas Instruments. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 19 | */ |
Lad, Prabhakar | e7eff70 | 2013-06-17 20:27:58 +0530 | [diff] [blame] | 20 | #include <linux/err.h> |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 21 | #include <linux/kernel.h> |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 22 | #include <linux/init.h> |
| 23 | #include <linux/module.h> |
| 24 | #include <linux/interrupt.h> |
| 25 | #include <linux/platform_device.h> |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 26 | #include <linux/io.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 27 | #include <linux/slab.h> |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 28 | #include <linux/edma.h> |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 29 | #include <linux/of_address.h> |
| 30 | #include <linux/of_device.h> |
| 31 | #include <linux/of_dma.h> |
| 32 | #include <linux/of_irq.h> |
| 33 | #include <linux/pm_runtime.h> |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 34 | |
Matt Porter | 3ad7a42 | 2013-03-06 11:15:31 -0500 | [diff] [blame] | 35 | #include <linux/platform_data/edma.h> |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 36 | |
| 37 | /* Offsets matching "struct edmacc_param" */ |
| 38 | #define PARM_OPT 0x00 |
| 39 | #define PARM_SRC 0x04 |
| 40 | #define PARM_A_B_CNT 0x08 |
| 41 | #define PARM_DST 0x0c |
| 42 | #define PARM_SRC_DST_BIDX 0x10 |
| 43 | #define PARM_LINK_BCNTRLD 0x14 |
| 44 | #define PARM_SRC_DST_CIDX 0x18 |
| 45 | #define PARM_CCNT 0x1c |
| 46 | |
| 47 | #define PARM_SIZE 0x20 |
| 48 | |
| 49 | /* Offsets for EDMA CC global channel registers and their shadows */ |
| 50 | #define SH_ER 0x00 /* 64 bits */ |
| 51 | #define SH_ECR 0x08 /* 64 bits */ |
| 52 | #define SH_ESR 0x10 /* 64 bits */ |
| 53 | #define SH_CER 0x18 /* 64 bits */ |
| 54 | #define SH_EER 0x20 /* 64 bits */ |
| 55 | #define SH_EECR 0x28 /* 64 bits */ |
| 56 | #define SH_EESR 0x30 /* 64 bits */ |
| 57 | #define SH_SER 0x38 /* 64 bits */ |
| 58 | #define SH_SECR 0x40 /* 64 bits */ |
| 59 | #define SH_IER 0x50 /* 64 bits */ |
| 60 | #define SH_IECR 0x58 /* 64 bits */ |
| 61 | #define SH_IESR 0x60 /* 64 bits */ |
| 62 | #define SH_IPR 0x68 /* 64 bits */ |
| 63 | #define SH_ICR 0x70 /* 64 bits */ |
| 64 | #define SH_IEVAL 0x78 |
| 65 | #define SH_QER 0x80 |
| 66 | #define SH_QEER 0x84 |
| 67 | #define SH_QEECR 0x88 |
| 68 | #define SH_QEESR 0x8c |
| 69 | #define SH_QSER 0x90 |
| 70 | #define SH_QSECR 0x94 |
| 71 | #define SH_SIZE 0x200 |
| 72 | |
| 73 | /* Offsets for EDMA CC global registers */ |
| 74 | #define EDMA_REV 0x0000 |
| 75 | #define EDMA_CCCFG 0x0004 |
| 76 | #define EDMA_QCHMAP 0x0200 /* 8 registers */ |
| 77 | #define EDMA_DMAQNUM 0x0240 /* 8 registers (4 on OMAP-L1xx) */ |
| 78 | #define EDMA_QDMAQNUM 0x0260 |
| 79 | #define EDMA_QUETCMAP 0x0280 |
| 80 | #define EDMA_QUEPRI 0x0284 |
| 81 | #define EDMA_EMR 0x0300 /* 64 bits */ |
| 82 | #define EDMA_EMCR 0x0308 /* 64 bits */ |
| 83 | #define EDMA_QEMR 0x0310 |
| 84 | #define EDMA_QEMCR 0x0314 |
| 85 | #define EDMA_CCERR 0x0318 |
| 86 | #define EDMA_CCERRCLR 0x031c |
| 87 | #define EDMA_EEVAL 0x0320 |
| 88 | #define EDMA_DRAE 0x0340 /* 4 x 64 bits*/ |
| 89 | #define EDMA_QRAE 0x0380 /* 4 registers */ |
| 90 | #define EDMA_QUEEVTENTRY 0x0400 /* 2 x 16 registers */ |
| 91 | #define EDMA_QSTAT 0x0600 /* 2 registers */ |
| 92 | #define EDMA_QWMTHRA 0x0620 |
| 93 | #define EDMA_QWMTHRB 0x0624 |
| 94 | #define EDMA_CCSTAT 0x0640 |
| 95 | |
| 96 | #define EDMA_M 0x1000 /* global channel registers */ |
| 97 | #define EDMA_ECR 0x1008 |
| 98 | #define EDMA_ECRH 0x100C |
| 99 | #define EDMA_SHADOW0 0x2000 /* 4 regions shadowing global channels */ |
| 100 | #define EDMA_PARM 0x4000 /* 128 param entries */ |
| 101 | |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 102 | #define PARM_OFFSET(param_no) (EDMA_PARM + ((param_no) << 5)) |
| 103 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 104 | #define EDMA_DCHMAP 0x0100 /* 64 registers */ |
Peter Ujfalusi | 6d10c39 | 2014-05-16 15:17:15 +0300 | [diff] [blame] | 105 | |
| 106 | /* CCCFG register */ |
| 107 | #define GET_NUM_DMACH(x) (x & 0x7) /* bits 0-2 */ |
| 108 | #define GET_NUM_PAENTRY(x) ((x & 0x7000) >> 12) /* bits 12-14 */ |
| 109 | #define GET_NUM_EVQUE(x) ((x & 0x70000) >> 16) /* bits 16-18 */ |
| 110 | #define GET_NUM_REGN(x) ((x & 0x300000) >> 20) /* bits 20-21 */ |
| 111 | #define CHMAP_EXIST BIT(24) |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 112 | |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 113 | #define EDMA_MAX_DMACH 64 |
| 114 | #define EDMA_MAX_PARAMENTRY 512 |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 115 | |
| 116 | /*****************************************************************************/ |
| 117 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 118 | static void __iomem *edmacc_regs_base[EDMA_MAX_CC]; |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 119 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 120 | static inline unsigned int edma_read(unsigned ctlr, int offset) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 121 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 122 | return (unsigned int)__raw_readl(edmacc_regs_base[ctlr] + offset); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 123 | } |
| 124 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 125 | static inline void edma_write(unsigned ctlr, int offset, int val) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 126 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 127 | __raw_writel(val, edmacc_regs_base[ctlr] + offset); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 128 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 129 | static inline void edma_modify(unsigned ctlr, int offset, unsigned and, |
| 130 | unsigned or) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 131 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 132 | unsigned val = edma_read(ctlr, offset); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 133 | val &= and; |
| 134 | val |= or; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 135 | edma_write(ctlr, offset, val); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 136 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 137 | static inline void edma_and(unsigned ctlr, int offset, unsigned and) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 138 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 139 | unsigned val = edma_read(ctlr, offset); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 140 | val &= and; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 141 | edma_write(ctlr, offset, val); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 142 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 143 | static inline void edma_or(unsigned ctlr, int offset, unsigned or) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 144 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 145 | unsigned val = edma_read(ctlr, offset); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 146 | val |= or; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 147 | edma_write(ctlr, offset, val); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 148 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 149 | static inline unsigned int edma_read_array(unsigned ctlr, int offset, int i) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 150 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 151 | return edma_read(ctlr, offset + (i << 2)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 152 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 153 | static inline void edma_write_array(unsigned ctlr, int offset, int i, |
| 154 | unsigned val) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 155 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 156 | edma_write(ctlr, offset + (i << 2), val); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 157 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 158 | static inline void edma_modify_array(unsigned ctlr, int offset, int i, |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 159 | unsigned and, unsigned or) |
| 160 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 161 | edma_modify(ctlr, offset + (i << 2), and, or); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 162 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 163 | static inline void edma_or_array(unsigned ctlr, int offset, int i, unsigned or) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 164 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 165 | edma_or(ctlr, offset + (i << 2), or); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 166 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 167 | static inline void edma_or_array2(unsigned ctlr, int offset, int i, int j, |
| 168 | unsigned or) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 169 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 170 | edma_or(ctlr, offset + ((i*2 + j) << 2), or); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 171 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 172 | static inline void edma_write_array2(unsigned ctlr, int offset, int i, int j, |
| 173 | unsigned val) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 174 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 175 | edma_write(ctlr, offset + ((i*2 + j) << 2), val); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 176 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 177 | static inline unsigned int edma_shadow0_read(unsigned ctlr, int offset) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 178 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 179 | return edma_read(ctlr, EDMA_SHADOW0 + offset); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 180 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 181 | static inline unsigned int edma_shadow0_read_array(unsigned ctlr, int offset, |
| 182 | int i) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 183 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 184 | return edma_read(ctlr, EDMA_SHADOW0 + offset + (i << 2)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 185 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 186 | static inline void edma_shadow0_write(unsigned ctlr, int offset, unsigned val) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 187 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 188 | edma_write(ctlr, EDMA_SHADOW0 + offset, val); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 189 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 190 | static inline void edma_shadow0_write_array(unsigned ctlr, int offset, int i, |
| 191 | unsigned val) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 192 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 193 | edma_write(ctlr, EDMA_SHADOW0 + offset + (i << 2), val); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 194 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 195 | static inline unsigned int edma_parm_read(unsigned ctlr, int offset, |
| 196 | int param_no) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 197 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 198 | return edma_read(ctlr, EDMA_PARM + offset + (param_no << 5)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 199 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 200 | static inline void edma_parm_write(unsigned ctlr, int offset, int param_no, |
| 201 | unsigned val) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 202 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 203 | edma_write(ctlr, EDMA_PARM + offset + (param_no << 5), val); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 204 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 205 | static inline void edma_parm_modify(unsigned ctlr, int offset, int param_no, |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 206 | unsigned and, unsigned or) |
| 207 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 208 | edma_modify(ctlr, EDMA_PARM + offset + (param_no << 5), and, or); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 209 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 210 | static inline void edma_parm_and(unsigned ctlr, int offset, int param_no, |
| 211 | unsigned and) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 212 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 213 | edma_and(ctlr, EDMA_PARM + offset + (param_no << 5), and); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 214 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 215 | static inline void edma_parm_or(unsigned ctlr, int offset, int param_no, |
| 216 | unsigned or) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 217 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 218 | edma_or(ctlr, EDMA_PARM + offset + (param_no << 5), or); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 219 | } |
| 220 | |
Rajashekhara, Sudhakar | 90bd4e6 | 2010-06-29 11:35:13 +0530 | [diff] [blame] | 221 | static inline void set_bits(int offset, int len, unsigned long *p) |
| 222 | { |
| 223 | for (; len > 0; len--) |
| 224 | set_bit(offset + (len - 1), p); |
| 225 | } |
| 226 | |
| 227 | static inline void clear_bits(int offset, int len, unsigned long *p) |
| 228 | { |
| 229 | for (; len > 0; len--) |
| 230 | clear_bit(offset + (len - 1), p); |
| 231 | } |
| 232 | |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 233 | /*****************************************************************************/ |
| 234 | |
| 235 | /* actual number of DMA channels and slots on this silicon */ |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 236 | struct edma { |
| 237 | /* how many dma resources of each type */ |
| 238 | unsigned num_channels; |
| 239 | unsigned num_region; |
| 240 | unsigned num_slots; |
| 241 | unsigned num_tc; |
Sandeep Paulraj | a0f0202 | 2009-07-27 09:57:07 -0400 | [diff] [blame] | 242 | enum dma_event_q default_queue; |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 243 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 244 | /* list of channels with no even trigger; terminated by "-1" */ |
| 245 | const s8 *noevent; |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 246 | |
Daniel Mack | a2b1175 | 2014-08-26 10:52:53 +0200 | [diff] [blame] | 247 | struct edma_soc_info *info; |
| 248 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 249 | /* The edma_inuse bit for each PaRAM slot is clear unless the |
| 250 | * channel is in use ... by ARM or DSP, for QDMA, or whatever. |
| 251 | */ |
| 252 | DECLARE_BITMAP(edma_inuse, EDMA_MAX_PARAMENTRY); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 253 | |
Sudhakar Rajashekhara | f900d55 | 2010-01-06 17:29:49 +0530 | [diff] [blame] | 254 | /* The edma_unused bit for each channel is clear unless |
| 255 | * it is not being used on this platform. It uses a bit |
| 256 | * of SOC-specific initialization code. |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 257 | */ |
Sudhakar Rajashekhara | f900d55 | 2010-01-06 17:29:49 +0530 | [diff] [blame] | 258 | DECLARE_BITMAP(edma_unused, EDMA_MAX_DMACH); |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 259 | |
| 260 | unsigned irq_res_start; |
| 261 | unsigned irq_res_end; |
| 262 | |
| 263 | struct dma_interrupt_data { |
| 264 | void (*callback)(unsigned channel, unsigned short ch_status, |
| 265 | void *data); |
| 266 | void *data; |
| 267 | } intr_data[EDMA_MAX_DMACH]; |
| 268 | }; |
| 269 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 270 | static struct edma *edma_cc[EDMA_MAX_CC]; |
Sudhakar Rajashekhara | 2d51750 | 2010-01-06 17:28:44 +0530 | [diff] [blame] | 271 | static int arch_num_cc; |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 272 | |
| 273 | /* dummy param set used to (re)initialize parameter RAM slots */ |
| 274 | static const struct edmacc_param dummy_paramset = { |
| 275 | .link_bcntrld = 0xffff, |
| 276 | .ccnt = 1, |
| 277 | }; |
| 278 | |
Joel Fernandes | 6cdaca4 | 2013-09-26 16:55:46 -0500 | [diff] [blame] | 279 | static const struct of_device_id edma_of_ids[] = { |
| 280 | { .compatible = "ti,edma3", }, |
| 281 | {} |
| 282 | }; |
| 283 | |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 284 | /*****************************************************************************/ |
| 285 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 286 | static void map_dmach_queue(unsigned ctlr, unsigned ch_no, |
| 287 | enum dma_event_q queue_no) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 288 | { |
| 289 | int bit = (ch_no & 0x7) * 4; |
| 290 | |
| 291 | /* default to low priority queue */ |
| 292 | if (queue_no == EVENTQ_DEFAULT) |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 293 | queue_no = edma_cc[ctlr]->default_queue; |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 294 | |
| 295 | queue_no &= 7; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 296 | edma_modify_array(ctlr, EDMA_DMAQNUM, (ch_no >> 3), |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 297 | ~(0x7 << bit), queue_no << bit); |
| 298 | } |
| 299 | |
Daniel Mack | a2b1175 | 2014-08-26 10:52:53 +0200 | [diff] [blame] | 300 | static void assign_priority_to_queue(unsigned ctlr, int queue_no, |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 301 | int priority) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 302 | { |
| 303 | int bit = queue_no * 4; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 304 | edma_modify(ctlr, EDMA_QUEPRI, ~(0x7 << bit), |
| 305 | ((priority & 0x7) << bit)); |
| 306 | } |
| 307 | |
| 308 | /** |
| 309 | * map_dmach_param - Maps channel number to param entry number |
| 310 | * |
| 311 | * This maps the dma channel number to param entry numberter. In |
| 312 | * other words using the DMA channel mapping registers a param entry |
| 313 | * can be mapped to any channel |
| 314 | * |
| 315 | * Callers are responsible for ensuring the channel mapping logic is |
| 316 | * included in that particular EDMA variant (Eg : dm646x) |
| 317 | * |
| 318 | */ |
Daniel Mack | a2b1175 | 2014-08-26 10:52:53 +0200 | [diff] [blame] | 319 | static void map_dmach_param(unsigned ctlr) |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 320 | { |
| 321 | int i; |
| 322 | for (i = 0; i < EDMA_MAX_DMACH; i++) |
| 323 | edma_write_array(ctlr, EDMA_DCHMAP , i , (i << 5)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | static inline void |
| 327 | setup_dma_interrupt(unsigned lch, |
| 328 | void (*callback)(unsigned channel, u16 ch_status, void *data), |
| 329 | void *data) |
| 330 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 331 | unsigned ctlr; |
| 332 | |
| 333 | ctlr = EDMA_CTLR(lch); |
| 334 | lch = EDMA_CHAN_SLOT(lch); |
| 335 | |
Sekhar Nori | 243bc65 | 2010-05-04 14:11:36 +0530 | [diff] [blame] | 336 | if (!callback) |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 337 | edma_shadow0_write_array(ctlr, SH_IECR, lch >> 5, |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 338 | BIT(lch & 0x1f)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 339 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 340 | edma_cc[ctlr]->intr_data[lch].callback = callback; |
| 341 | edma_cc[ctlr]->intr_data[lch].data = data; |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 342 | |
| 343 | if (callback) { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 344 | edma_shadow0_write_array(ctlr, SH_ICR, lch >> 5, |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 345 | BIT(lch & 0x1f)); |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 346 | edma_shadow0_write_array(ctlr, SH_IESR, lch >> 5, |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 347 | BIT(lch & 0x1f)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 348 | } |
| 349 | } |
| 350 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 351 | static int irq2ctlr(int irq) |
| 352 | { |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 353 | if (irq >= edma_cc[0]->irq_res_start && irq <= edma_cc[0]->irq_res_end) |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 354 | return 0; |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 355 | else if (irq >= edma_cc[1]->irq_res_start && |
| 356 | irq <= edma_cc[1]->irq_res_end) |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 357 | return 1; |
| 358 | |
| 359 | return -1; |
| 360 | } |
| 361 | |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 362 | /****************************************************************************** |
| 363 | * |
| 364 | * DMA interrupt handler |
| 365 | * |
| 366 | *****************************************************************************/ |
| 367 | static irqreturn_t dma_irq_handler(int irq, void *data) |
| 368 | { |
Kulikov Vasiliy | 93fe23d | 2010-07-17 19:19:07 +0400 | [diff] [blame] | 369 | int ctlr; |
Sebastian Andrzej Siewior | bcd59b0 | 2012-02-09 13:28:26 +0100 | [diff] [blame] | 370 | u32 sh_ier; |
| 371 | u32 sh_ipr; |
| 372 | u32 bank; |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 373 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 374 | ctlr = irq2ctlr(irq); |
Kulikov Vasiliy | 93fe23d | 2010-07-17 19:19:07 +0400 | [diff] [blame] | 375 | if (ctlr < 0) |
| 376 | return IRQ_NONE; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 377 | |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 378 | dev_dbg(data, "dma_irq_handler\n"); |
| 379 | |
Sebastian Andrzej Siewior | bcd59b0 | 2012-02-09 13:28:26 +0100 | [diff] [blame] | 380 | sh_ipr = edma_shadow0_read_array(ctlr, SH_IPR, 0); |
| 381 | if (!sh_ipr) { |
| 382 | sh_ipr = edma_shadow0_read_array(ctlr, SH_IPR, 1); |
| 383 | if (!sh_ipr) |
| 384 | return IRQ_NONE; |
| 385 | sh_ier = edma_shadow0_read_array(ctlr, SH_IER, 1); |
| 386 | bank = 1; |
| 387 | } else { |
| 388 | sh_ier = edma_shadow0_read_array(ctlr, SH_IER, 0); |
| 389 | bank = 0; |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 390 | } |
Sebastian Andrzej Siewior | bcd59b0 | 2012-02-09 13:28:26 +0100 | [diff] [blame] | 391 | |
| 392 | do { |
| 393 | u32 slot; |
| 394 | u32 channel; |
| 395 | |
| 396 | dev_dbg(data, "IPR%d %08x\n", bank, sh_ipr); |
| 397 | |
| 398 | slot = __ffs(sh_ipr); |
| 399 | sh_ipr &= ~(BIT(slot)); |
| 400 | |
| 401 | if (sh_ier & BIT(slot)) { |
| 402 | channel = (bank << 5) | slot; |
| 403 | /* Clear the corresponding IPR bits */ |
| 404 | edma_shadow0_write_array(ctlr, SH_ICR, bank, |
| 405 | BIT(slot)); |
| 406 | if (edma_cc[ctlr]->intr_data[channel].callback) |
| 407 | edma_cc[ctlr]->intr_data[channel].callback( |
Vinod Koul | db60d8d | 2013-10-30 18:22:30 +0530 | [diff] [blame] | 408 | channel, EDMA_DMA_COMPLETE, |
Sebastian Andrzej Siewior | bcd59b0 | 2012-02-09 13:28:26 +0100 | [diff] [blame] | 409 | edma_cc[ctlr]->intr_data[channel].data); |
| 410 | } |
| 411 | } while (sh_ipr); |
| 412 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 413 | edma_shadow0_write(ctlr, SH_IEVAL, 1); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 414 | return IRQ_HANDLED; |
| 415 | } |
| 416 | |
| 417 | /****************************************************************************** |
| 418 | * |
| 419 | * DMA error interrupt handler |
| 420 | * |
| 421 | *****************************************************************************/ |
| 422 | static irqreturn_t dma_ccerr_handler(int irq, void *data) |
| 423 | { |
| 424 | int i; |
Kulikov Vasiliy | 93fe23d | 2010-07-17 19:19:07 +0400 | [diff] [blame] | 425 | int ctlr; |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 426 | unsigned int cnt = 0; |
| 427 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 428 | ctlr = irq2ctlr(irq); |
Kulikov Vasiliy | 93fe23d | 2010-07-17 19:19:07 +0400 | [diff] [blame] | 429 | if (ctlr < 0) |
| 430 | return IRQ_NONE; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 431 | |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 432 | dev_dbg(data, "dma_ccerr_handler\n"); |
| 433 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 434 | if ((edma_read_array(ctlr, EDMA_EMR, 0) == 0) && |
| 435 | (edma_read_array(ctlr, EDMA_EMR, 1) == 0) && |
| 436 | (edma_read(ctlr, EDMA_QEMR) == 0) && |
| 437 | (edma_read(ctlr, EDMA_CCERR) == 0)) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 438 | return IRQ_NONE; |
| 439 | |
| 440 | while (1) { |
| 441 | int j = -1; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 442 | if (edma_read_array(ctlr, EDMA_EMR, 0)) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 443 | j = 0; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 444 | else if (edma_read_array(ctlr, EDMA_EMR, 1)) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 445 | j = 1; |
| 446 | if (j >= 0) { |
| 447 | dev_dbg(data, "EMR%d %08x\n", j, |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 448 | edma_read_array(ctlr, EDMA_EMR, j)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 449 | for (i = 0; i < 32; i++) { |
| 450 | int k = (j << 5) + i; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 451 | if (edma_read_array(ctlr, EDMA_EMR, j) & |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 452 | BIT(i)) { |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 453 | /* Clear the corresponding EMR bits */ |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 454 | edma_write_array(ctlr, EDMA_EMCR, j, |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 455 | BIT(i)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 456 | /* Clear any SER */ |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 457 | edma_shadow0_write_array(ctlr, SH_SECR, |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 458 | j, BIT(i)); |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 459 | if (edma_cc[ctlr]->intr_data[k]. |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 460 | callback) { |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 461 | edma_cc[ctlr]->intr_data[k]. |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 462 | callback(k, |
Vinod Koul | db60d8d | 2013-10-30 18:22:30 +0530 | [diff] [blame] | 463 | EDMA_DMA_CC_ERROR, |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 464 | edma_cc[ctlr]->intr_data |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 465 | [k].data); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 466 | } |
| 467 | } |
| 468 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 469 | } else if (edma_read(ctlr, EDMA_QEMR)) { |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 470 | dev_dbg(data, "QEMR %02x\n", |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 471 | edma_read(ctlr, EDMA_QEMR)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 472 | for (i = 0; i < 8; i++) { |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 473 | if (edma_read(ctlr, EDMA_QEMR) & BIT(i)) { |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 474 | /* Clear the corresponding IPR bits */ |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 475 | edma_write(ctlr, EDMA_QEMCR, BIT(i)); |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 476 | edma_shadow0_write(ctlr, SH_QSECR, |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 477 | BIT(i)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 478 | |
| 479 | /* NOTE: not reported!! */ |
| 480 | } |
| 481 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 482 | } else if (edma_read(ctlr, EDMA_CCERR)) { |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 483 | dev_dbg(data, "CCERR %08x\n", |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 484 | edma_read(ctlr, EDMA_CCERR)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 485 | /* FIXME: CCERR.BIT(16) ignored! much better |
| 486 | * to just write CCERRCLR with CCERR value... |
| 487 | */ |
| 488 | for (i = 0; i < 8; i++) { |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 489 | if (edma_read(ctlr, EDMA_CCERR) & BIT(i)) { |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 490 | /* Clear the corresponding IPR bits */ |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 491 | edma_write(ctlr, EDMA_CCERRCLR, BIT(i)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 492 | |
| 493 | /* NOTE: not reported!! */ |
| 494 | } |
| 495 | } |
| 496 | } |
Sekhar Nori | a6374f5 | 2010-05-10 12:41:19 +0530 | [diff] [blame] | 497 | if ((edma_read_array(ctlr, EDMA_EMR, 0) == 0) && |
| 498 | (edma_read_array(ctlr, EDMA_EMR, 1) == 0) && |
| 499 | (edma_read(ctlr, EDMA_QEMR) == 0) && |
| 500 | (edma_read(ctlr, EDMA_CCERR) == 0)) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 501 | break; |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 502 | cnt++; |
| 503 | if (cnt > 10) |
| 504 | break; |
| 505 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 506 | edma_write(ctlr, EDMA_EEVAL, 1); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 507 | return IRQ_HANDLED; |
| 508 | } |
| 509 | |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 510 | static int reserve_contiguous_slots(int ctlr, unsigned int id, |
| 511 | unsigned int num_slots, |
| 512 | unsigned int start_slot) |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 513 | { |
| 514 | int i, j; |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 515 | unsigned int count = num_slots; |
| 516 | int stop_slot = start_slot; |
Sandeep Paulraj | cc93fc3 | 2009-09-20 13:47:03 -0400 | [diff] [blame] | 517 | DECLARE_BITMAP(tmp_inuse, EDMA_MAX_PARAMENTRY); |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 518 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 519 | for (i = start_slot; i < edma_cc[ctlr]->num_slots; ++i) { |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 520 | j = EDMA_CHAN_SLOT(i); |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 521 | if (!test_and_set_bit(j, edma_cc[ctlr]->edma_inuse)) { |
Sandeep Paulraj | cc93fc3 | 2009-09-20 13:47:03 -0400 | [diff] [blame] | 522 | /* Record our current beginning slot */ |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 523 | if (count == num_slots) |
| 524 | stop_slot = i; |
Sandeep Paulraj | cc93fc3 | 2009-09-20 13:47:03 -0400 | [diff] [blame] | 525 | |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 526 | count--; |
Sandeep Paulraj | cc93fc3 | 2009-09-20 13:47:03 -0400 | [diff] [blame] | 527 | set_bit(j, tmp_inuse); |
| 528 | |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 529 | if (count == 0) |
| 530 | break; |
Sandeep Paulraj | cc93fc3 | 2009-09-20 13:47:03 -0400 | [diff] [blame] | 531 | } else { |
| 532 | clear_bit(j, tmp_inuse); |
| 533 | |
| 534 | if (id == EDMA_CONT_PARAMS_FIXED_EXACT) { |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 535 | stop_slot = i; |
Sandeep Paulraj | cc93fc3 | 2009-09-20 13:47:03 -0400 | [diff] [blame] | 536 | break; |
Sekhar Nori | 243bc65 | 2010-05-04 14:11:36 +0530 | [diff] [blame] | 537 | } else { |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 538 | count = num_slots; |
Sekhar Nori | 243bc65 | 2010-05-04 14:11:36 +0530 | [diff] [blame] | 539 | } |
Sandeep Paulraj | cc93fc3 | 2009-09-20 13:47:03 -0400 | [diff] [blame] | 540 | } |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | /* |
| 544 | * We have to clear any bits that we set |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 545 | * if we run out parameter RAM slots, i.e we do find a set |
| 546 | * of contiguous parameter RAM slots but do not find the exact number |
| 547 | * requested as we may reach the total number of parameter RAM slots |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 548 | */ |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 549 | if (i == edma_cc[ctlr]->num_slots) |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 550 | stop_slot = i; |
Sandeep Paulraj | cc93fc3 | 2009-09-20 13:47:03 -0400 | [diff] [blame] | 551 | |
Akinobu Mita | 98e3b33 | 2012-04-11 20:36:53 +0900 | [diff] [blame] | 552 | j = start_slot; |
| 553 | for_each_set_bit_from(j, tmp_inuse, stop_slot) |
| 554 | clear_bit(j, edma_cc[ctlr]->edma_inuse); |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 555 | |
Sandeep Paulraj | cc93fc3 | 2009-09-20 13:47:03 -0400 | [diff] [blame] | 556 | if (count) |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 557 | return -EBUSY; |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 558 | |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 559 | for (j = i - num_slots + 1; j <= i; ++j) |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 560 | memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(j), |
| 561 | &dummy_paramset, PARM_SIZE); |
| 562 | |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 563 | return EDMA_CTLR_CHAN(ctlr, i - num_slots + 1); |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 564 | } |
| 565 | |
Sudhakar Rajashekhara | f900d55 | 2010-01-06 17:29:49 +0530 | [diff] [blame] | 566 | static int prepare_unused_channel_list(struct device *dev, void *data) |
| 567 | { |
| 568 | struct platform_device *pdev = to_platform_device(dev); |
Joel Fernandes | 6cdaca4 | 2013-09-26 16:55:46 -0500 | [diff] [blame] | 569 | int i, count, ctlr; |
| 570 | struct of_phandle_args dma_spec; |
Sudhakar Rajashekhara | f900d55 | 2010-01-06 17:29:49 +0530 | [diff] [blame] | 571 | |
Joel Fernandes | 6cdaca4 | 2013-09-26 16:55:46 -0500 | [diff] [blame] | 572 | if (dev->of_node) { |
| 573 | count = of_property_count_strings(dev->of_node, "dma-names"); |
| 574 | if (count < 0) |
| 575 | return 0; |
| 576 | for (i = 0; i < count; i++) { |
| 577 | if (of_parse_phandle_with_args(dev->of_node, "dmas", |
| 578 | "#dma-cells", i, |
| 579 | &dma_spec)) |
| 580 | continue; |
| 581 | |
| 582 | if (!of_match_node(edma_of_ids, dma_spec.np)) { |
| 583 | of_node_put(dma_spec.np); |
| 584 | continue; |
| 585 | } |
| 586 | |
| 587 | clear_bit(EDMA_CHAN_SLOT(dma_spec.args[0]), |
| 588 | edma_cc[0]->edma_unused); |
| 589 | of_node_put(dma_spec.np); |
| 590 | } |
| 591 | return 0; |
| 592 | } |
| 593 | |
| 594 | /* For non-OF case */ |
Sudhakar Rajashekhara | f900d55 | 2010-01-06 17:29:49 +0530 | [diff] [blame] | 595 | for (i = 0; i < pdev->num_resources; i++) { |
| 596 | if ((pdev->resource[i].flags & IORESOURCE_DMA) && |
| 597 | (int)pdev->resource[i].start >= 0) { |
| 598 | ctlr = EDMA_CTLR(pdev->resource[i].start); |
| 599 | clear_bit(EDMA_CHAN_SLOT(pdev->resource[i].start), |
Joel Fernandes | 6cdaca4 | 2013-09-26 16:55:46 -0500 | [diff] [blame] | 600 | edma_cc[ctlr]->edma_unused); |
Sudhakar Rajashekhara | f900d55 | 2010-01-06 17:29:49 +0530 | [diff] [blame] | 601 | } |
| 602 | } |
| 603 | |
| 604 | return 0; |
| 605 | } |
| 606 | |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 607 | /*-----------------------------------------------------------------------*/ |
| 608 | |
Sudhakar Rajashekhara | f900d55 | 2010-01-06 17:29:49 +0530 | [diff] [blame] | 609 | static bool unused_chan_list_done; |
| 610 | |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 611 | /* Resource alloc/free: dma channels, parameter RAM slots */ |
| 612 | |
| 613 | /** |
| 614 | * edma_alloc_channel - allocate DMA channel and paired parameter RAM |
| 615 | * @channel: specific channel to allocate; negative for "any unmapped channel" |
| 616 | * @callback: optional; to be issued on DMA completion or errors |
| 617 | * @data: passed to callback |
| 618 | * @eventq_no: an EVENTQ_* constant, used to choose which Transfer |
| 619 | * Controller (TC) executes requests using this channel. Use |
| 620 | * EVENTQ_DEFAULT unless you really need a high priority queue. |
| 621 | * |
| 622 | * This allocates a DMA channel and its associated parameter RAM slot. |
| 623 | * The parameter RAM is initialized to hold a dummy transfer. |
| 624 | * |
| 625 | * Normal use is to pass a specific channel number as @channel, to make |
| 626 | * use of hardware events mapped to that channel. When the channel will |
| 627 | * be used only for software triggering or event chaining, channels not |
| 628 | * mapped to hardware events (or mapped to unused events) are preferable. |
| 629 | * |
| 630 | * DMA transfers start from a channel using edma_start(), or by |
| 631 | * chaining. When the transfer described in that channel's parameter RAM |
| 632 | * slot completes, that slot's data may be reloaded through a link. |
| 633 | * |
| 634 | * DMA errors are only reported to the @callback associated with the |
| 635 | * channel driving that transfer, but transfer completion callbacks can |
| 636 | * be sent to another channel under control of the TCC field in |
| 637 | * the option word of the transfer's parameter RAM set. Drivers must not |
| 638 | * use DMA transfer completion callbacks for channels they did not allocate. |
| 639 | * (The same applies to TCC codes used in transfer chaining.) |
| 640 | * |
| 641 | * Returns the number of the channel, else negative errno. |
| 642 | */ |
| 643 | int edma_alloc_channel(int channel, |
| 644 | void (*callback)(unsigned channel, u16 ch_status, void *data), |
| 645 | void *data, |
| 646 | enum dma_event_q eventq_no) |
| 647 | { |
Sudhakar Rajashekhara | 447f18f | 2010-01-06 17:29:11 +0530 | [diff] [blame] | 648 | unsigned i, done = 0, ctlr = 0; |
Sudhakar Rajashekhara | f900d55 | 2010-01-06 17:29:49 +0530 | [diff] [blame] | 649 | int ret = 0; |
| 650 | |
| 651 | if (!unused_chan_list_done) { |
| 652 | /* |
| 653 | * Scan all the platform devices to find out the EDMA channels |
| 654 | * used and clear them in the unused list, making the rest |
| 655 | * available for ARM usage. |
| 656 | */ |
| 657 | ret = bus_for_each_dev(&platform_bus_type, NULL, NULL, |
| 658 | prepare_unused_channel_list); |
| 659 | if (ret < 0) |
| 660 | return ret; |
| 661 | |
| 662 | unused_chan_list_done = true; |
| 663 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 664 | |
| 665 | if (channel >= 0) { |
| 666 | ctlr = EDMA_CTLR(channel); |
| 667 | channel = EDMA_CHAN_SLOT(channel); |
| 668 | } |
| 669 | |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 670 | if (channel < 0) { |
Sudhakar Rajashekhara | 2d51750 | 2010-01-06 17:28:44 +0530 | [diff] [blame] | 671 | for (i = 0; i < arch_num_cc; i++) { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 672 | channel = 0; |
| 673 | for (;;) { |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 674 | channel = find_next_bit(edma_cc[i]->edma_unused, |
| 675 | edma_cc[i]->num_channels, |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 676 | channel); |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 677 | if (channel == edma_cc[i]->num_channels) |
Sudhakar Rajashekhara | 447f18f | 2010-01-06 17:29:11 +0530 | [diff] [blame] | 678 | break; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 679 | if (!test_and_set_bit(channel, |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 680 | edma_cc[i]->edma_inuse)) { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 681 | done = 1; |
| 682 | ctlr = i; |
| 683 | break; |
| 684 | } |
| 685 | channel++; |
| 686 | } |
| 687 | if (done) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 688 | break; |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 689 | } |
Sudhakar Rajashekhara | 447f18f | 2010-01-06 17:29:11 +0530 | [diff] [blame] | 690 | if (!done) |
| 691 | return -ENOMEM; |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 692 | } else if (channel >= edma_cc[ctlr]->num_channels) { |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 693 | return -EINVAL; |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 694 | } else if (test_and_set_bit(channel, edma_cc[ctlr]->edma_inuse)) { |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 695 | return -EBUSY; |
| 696 | } |
| 697 | |
| 698 | /* ensure access through shadow region 0 */ |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 699 | edma_or_array2(ctlr, EDMA_DRAE, 0, channel >> 5, BIT(channel & 0x1f)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 700 | |
| 701 | /* ensure no events are pending */ |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 702 | edma_stop(EDMA_CTLR_CHAN(ctlr, channel)); |
| 703 | memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(channel), |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 704 | &dummy_paramset, PARM_SIZE); |
| 705 | |
| 706 | if (callback) |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 707 | setup_dma_interrupt(EDMA_CTLR_CHAN(ctlr, channel), |
| 708 | callback, data); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 709 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 710 | map_dmach_queue(ctlr, channel, eventq_no); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 711 | |
Sudhakar Rajashekhara | 0e6cb8d | 2010-01-06 17:28:36 +0530 | [diff] [blame] | 712 | return EDMA_CTLR_CHAN(ctlr, channel); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 713 | } |
| 714 | EXPORT_SYMBOL(edma_alloc_channel); |
| 715 | |
| 716 | |
| 717 | /** |
| 718 | * edma_free_channel - deallocate DMA channel |
| 719 | * @channel: dma channel returned from edma_alloc_channel() |
| 720 | * |
| 721 | * This deallocates the DMA channel and associated parameter RAM slot |
| 722 | * allocated by edma_alloc_channel(). |
| 723 | * |
| 724 | * Callers are responsible for ensuring the channel is inactive, and |
| 725 | * will not be reactivated by linking, chaining, or software calls to |
| 726 | * edma_start(). |
| 727 | */ |
| 728 | void edma_free_channel(unsigned channel) |
| 729 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 730 | unsigned ctlr; |
| 731 | |
| 732 | ctlr = EDMA_CTLR(channel); |
| 733 | channel = EDMA_CHAN_SLOT(channel); |
| 734 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 735 | if (channel >= edma_cc[ctlr]->num_channels) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 736 | return; |
| 737 | |
| 738 | setup_dma_interrupt(channel, NULL, NULL); |
| 739 | /* REVISIT should probably take out of shadow region 0 */ |
| 740 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 741 | memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(channel), |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 742 | &dummy_paramset, PARM_SIZE); |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 743 | clear_bit(channel, edma_cc[ctlr]->edma_inuse); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 744 | } |
| 745 | EXPORT_SYMBOL(edma_free_channel); |
| 746 | |
| 747 | /** |
| 748 | * edma_alloc_slot - allocate DMA parameter RAM |
| 749 | * @slot: specific slot to allocate; negative for "any unused slot" |
| 750 | * |
| 751 | * This allocates a parameter RAM slot, initializing it to hold a |
| 752 | * dummy transfer. Slots allocated using this routine have not been |
| 753 | * mapped to a hardware DMA channel, and will normally be used by |
| 754 | * linking to them from a slot associated with a DMA channel. |
| 755 | * |
| 756 | * Normal use is to pass EDMA_SLOT_ANY as the @slot, but specific |
| 757 | * slots may be allocated on behalf of DSP firmware. |
| 758 | * |
| 759 | * Returns the number of the slot, else negative errno. |
| 760 | */ |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 761 | int edma_alloc_slot(unsigned ctlr, int slot) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 762 | { |
Matt Porter | 0695527 | 2013-03-05 10:58:22 -0500 | [diff] [blame] | 763 | if (!edma_cc[ctlr]) |
| 764 | return -EINVAL; |
| 765 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 766 | if (slot >= 0) |
| 767 | slot = EDMA_CHAN_SLOT(slot); |
| 768 | |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 769 | if (slot < 0) { |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 770 | slot = edma_cc[ctlr]->num_channels; |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 771 | for (;;) { |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 772 | slot = find_next_zero_bit(edma_cc[ctlr]->edma_inuse, |
| 773 | edma_cc[ctlr]->num_slots, slot); |
| 774 | if (slot == edma_cc[ctlr]->num_slots) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 775 | return -ENOMEM; |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 776 | if (!test_and_set_bit(slot, edma_cc[ctlr]->edma_inuse)) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 777 | break; |
| 778 | } |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 779 | } else if (slot < edma_cc[ctlr]->num_channels || |
| 780 | slot >= edma_cc[ctlr]->num_slots) { |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 781 | return -EINVAL; |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 782 | } else if (test_and_set_bit(slot, edma_cc[ctlr]->edma_inuse)) { |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 783 | return -EBUSY; |
| 784 | } |
| 785 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 786 | memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(slot), |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 787 | &dummy_paramset, PARM_SIZE); |
| 788 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 789 | return EDMA_CTLR_CHAN(ctlr, slot); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 790 | } |
| 791 | EXPORT_SYMBOL(edma_alloc_slot); |
| 792 | |
| 793 | /** |
| 794 | * edma_free_slot - deallocate DMA parameter RAM |
| 795 | * @slot: parameter RAM slot returned from edma_alloc_slot() |
| 796 | * |
| 797 | * This deallocates the parameter RAM slot allocated by edma_alloc_slot(). |
| 798 | * Callers are responsible for ensuring the slot is inactive, and will |
| 799 | * not be activated. |
| 800 | */ |
| 801 | void edma_free_slot(unsigned slot) |
| 802 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 803 | unsigned ctlr; |
| 804 | |
| 805 | ctlr = EDMA_CTLR(slot); |
| 806 | slot = EDMA_CHAN_SLOT(slot); |
| 807 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 808 | if (slot < edma_cc[ctlr]->num_channels || |
| 809 | slot >= edma_cc[ctlr]->num_slots) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 810 | return; |
| 811 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 812 | memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(slot), |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 813 | &dummy_paramset, PARM_SIZE); |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 814 | clear_bit(slot, edma_cc[ctlr]->edma_inuse); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 815 | } |
| 816 | EXPORT_SYMBOL(edma_free_slot); |
| 817 | |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 818 | |
| 819 | /** |
| 820 | * edma_alloc_cont_slots- alloc contiguous parameter RAM slots |
| 821 | * The API will return the starting point of a set of |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 822 | * contiguous parameter RAM slots that have been requested |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 823 | * |
| 824 | * @id: can only be EDMA_CONT_PARAMS_ANY or EDMA_CONT_PARAMS_FIXED_EXACT |
| 825 | * or EDMA_CONT_PARAMS_FIXED_NOT_EXACT |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 826 | * @count: number of contiguous Paramter RAM slots |
| 827 | * @slot - the start value of Parameter RAM slot that should be passed if id |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 828 | * is EDMA_CONT_PARAMS_FIXED_EXACT or EDMA_CONT_PARAMS_FIXED_NOT_EXACT |
| 829 | * |
| 830 | * If id is EDMA_CONT_PARAMS_ANY then the API starts looking for a set of |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 831 | * contiguous Parameter RAM slots from parameter RAM 64 in the case of |
| 832 | * DaVinci SOCs and 32 in the case of DA8xx SOCs. |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 833 | * |
| 834 | * If id is EDMA_CONT_PARAMS_FIXED_EXACT then the API starts looking for a |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 835 | * set of contiguous parameter RAM slots from the "slot" that is passed as an |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 836 | * argument to the API. |
| 837 | * |
| 838 | * If id is EDMA_CONT_PARAMS_FIXED_NOT_EXACT then the API initially tries |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 839 | * starts looking for a set of contiguous parameter RAMs from the "slot" |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 840 | * that is passed as an argument to the API. On failure the API will try to |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 841 | * find a set of contiguous Parameter RAM slots from the remaining Parameter |
| 842 | * RAM slots |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 843 | */ |
| 844 | int edma_alloc_cont_slots(unsigned ctlr, unsigned int id, int slot, int count) |
| 845 | { |
| 846 | /* |
| 847 | * The start slot requested should be greater than |
| 848 | * the number of channels and lesser than the total number |
| 849 | * of slots |
| 850 | */ |
Sandeep Paulraj | 6b0cf4e | 2009-09-16 18:17:43 -0400 | [diff] [blame] | 851 | if ((id != EDMA_CONT_PARAMS_ANY) && |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 852 | (slot < edma_cc[ctlr]->num_channels || |
| 853 | slot >= edma_cc[ctlr]->num_slots)) |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 854 | return -EINVAL; |
| 855 | |
| 856 | /* |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 857 | * The number of parameter RAM slots requested cannot be less than 1 |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 858 | * and cannot be more than the number of slots minus the number of |
| 859 | * channels |
| 860 | */ |
| 861 | if (count < 1 || count > |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 862 | (edma_cc[ctlr]->num_slots - edma_cc[ctlr]->num_channels)) |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 863 | return -EINVAL; |
| 864 | |
| 865 | switch (id) { |
| 866 | case EDMA_CONT_PARAMS_ANY: |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 867 | return reserve_contiguous_slots(ctlr, id, count, |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 868 | edma_cc[ctlr]->num_channels); |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 869 | case EDMA_CONT_PARAMS_FIXED_EXACT: |
| 870 | case EDMA_CONT_PARAMS_FIXED_NOT_EXACT: |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 871 | return reserve_contiguous_slots(ctlr, id, count, slot); |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 872 | default: |
| 873 | return -EINVAL; |
| 874 | } |
| 875 | |
| 876 | } |
| 877 | EXPORT_SYMBOL(edma_alloc_cont_slots); |
| 878 | |
| 879 | /** |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 880 | * edma_free_cont_slots - deallocate DMA parameter RAM slots |
| 881 | * @slot: first parameter RAM of a set of parameter RAM slots to be freed |
| 882 | * @count: the number of contiguous parameter RAM slots to be freed |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 883 | * |
| 884 | * This deallocates the parameter RAM slots allocated by |
| 885 | * edma_alloc_cont_slots. |
| 886 | * Callers/applications need to keep track of sets of contiguous |
Sandeep Paulraj | 134ce22 | 2009-09-20 14:06:33 -0400 | [diff] [blame] | 887 | * parameter RAM slots that have been allocated using the edma_alloc_cont_slots |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 888 | * API. |
| 889 | * Callers are responsible for ensuring the slots are inactive, and will |
| 890 | * not be activated. |
| 891 | */ |
| 892 | int edma_free_cont_slots(unsigned slot, int count) |
| 893 | { |
Sandeep Paulraj | 51c99e0 | 2009-09-16 18:09:59 -0400 | [diff] [blame] | 894 | unsigned ctlr, slot_to_free; |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 895 | int i; |
| 896 | |
| 897 | ctlr = EDMA_CTLR(slot); |
| 898 | slot = EDMA_CHAN_SLOT(slot); |
| 899 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 900 | if (slot < edma_cc[ctlr]->num_channels || |
| 901 | slot >= edma_cc[ctlr]->num_slots || |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 902 | count < 1) |
| 903 | return -EINVAL; |
| 904 | |
| 905 | for (i = slot; i < slot + count; ++i) { |
| 906 | ctlr = EDMA_CTLR(i); |
Sandeep Paulraj | 51c99e0 | 2009-09-16 18:09:59 -0400 | [diff] [blame] | 907 | slot_to_free = EDMA_CHAN_SLOT(i); |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 908 | |
Sandeep Paulraj | 51c99e0 | 2009-09-16 18:09:59 -0400 | [diff] [blame] | 909 | memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(slot_to_free), |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 910 | &dummy_paramset, PARM_SIZE); |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 911 | clear_bit(slot_to_free, edma_cc[ctlr]->edma_inuse); |
Sandeep Paulraj | 213765d | 2009-07-27 15:10:36 -0400 | [diff] [blame] | 912 | } |
| 913 | |
| 914 | return 0; |
| 915 | } |
| 916 | EXPORT_SYMBOL(edma_free_cont_slots); |
| 917 | |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 918 | /*-----------------------------------------------------------------------*/ |
| 919 | |
| 920 | /* Parameter RAM operations (i) -- read/write partial slots */ |
| 921 | |
| 922 | /** |
| 923 | * edma_set_src - set initial DMA source address in parameter RAM slot |
| 924 | * @slot: parameter RAM slot being configured |
| 925 | * @src_port: physical address of source (memory, controller FIFO, etc) |
| 926 | * @addressMode: INCR, except in very rare cases |
| 927 | * @fifoWidth: ignored unless @addressMode is FIFO, else specifies the |
| 928 | * width to use when addressing the fifo (e.g. W8BIT, W32BIT) |
| 929 | * |
| 930 | * Note that the source address is modified during the DMA transfer |
| 931 | * according to edma_set_src_index(). |
| 932 | */ |
| 933 | void edma_set_src(unsigned slot, dma_addr_t src_port, |
| 934 | enum address_mode mode, enum fifo_width width) |
| 935 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 936 | unsigned ctlr; |
| 937 | |
| 938 | ctlr = EDMA_CTLR(slot); |
| 939 | slot = EDMA_CHAN_SLOT(slot); |
| 940 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 941 | if (slot < edma_cc[ctlr]->num_slots) { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 942 | unsigned int i = edma_parm_read(ctlr, PARM_OPT, slot); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 943 | |
| 944 | if (mode) { |
| 945 | /* set SAM and program FWID */ |
| 946 | i = (i & ~(EDMA_FWID)) | (SAM | ((width & 0x7) << 8)); |
| 947 | } else { |
| 948 | /* clear SAM */ |
| 949 | i &= ~SAM; |
| 950 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 951 | edma_parm_write(ctlr, PARM_OPT, slot, i); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 952 | |
| 953 | /* set the source port address |
| 954 | in source register of param structure */ |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 955 | edma_parm_write(ctlr, PARM_SRC, slot, src_port); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 956 | } |
| 957 | } |
| 958 | EXPORT_SYMBOL(edma_set_src); |
| 959 | |
| 960 | /** |
| 961 | * edma_set_dest - set initial DMA destination address in parameter RAM slot |
| 962 | * @slot: parameter RAM slot being configured |
| 963 | * @dest_port: physical address of destination (memory, controller FIFO, etc) |
| 964 | * @addressMode: INCR, except in very rare cases |
| 965 | * @fifoWidth: ignored unless @addressMode is FIFO, else specifies the |
| 966 | * width to use when addressing the fifo (e.g. W8BIT, W32BIT) |
| 967 | * |
| 968 | * Note that the destination address is modified during the DMA transfer |
| 969 | * according to edma_set_dest_index(). |
| 970 | */ |
| 971 | void edma_set_dest(unsigned slot, dma_addr_t dest_port, |
| 972 | enum address_mode mode, enum fifo_width width) |
| 973 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 974 | unsigned ctlr; |
| 975 | |
| 976 | ctlr = EDMA_CTLR(slot); |
| 977 | slot = EDMA_CHAN_SLOT(slot); |
| 978 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 979 | if (slot < edma_cc[ctlr]->num_slots) { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 980 | unsigned int i = edma_parm_read(ctlr, PARM_OPT, slot); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 981 | |
| 982 | if (mode) { |
| 983 | /* set DAM and program FWID */ |
| 984 | i = (i & ~(EDMA_FWID)) | (DAM | ((width & 0x7) << 8)); |
| 985 | } else { |
| 986 | /* clear DAM */ |
| 987 | i &= ~DAM; |
| 988 | } |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 989 | edma_parm_write(ctlr, PARM_OPT, slot, i); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 990 | /* set the destination port address |
| 991 | in dest register of param structure */ |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 992 | edma_parm_write(ctlr, PARM_DST, slot, dest_port); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 993 | } |
| 994 | } |
| 995 | EXPORT_SYMBOL(edma_set_dest); |
| 996 | |
| 997 | /** |
Thomas Gleixner | cdae05a | 2014-04-28 10:49:43 +0000 | [diff] [blame] | 998 | * edma_get_position - returns the current transfer point |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 999 | * @slot: parameter RAM slot being examined |
Thomas Gleixner | cdae05a | 2014-04-28 10:49:43 +0000 | [diff] [blame] | 1000 | * @dst: true selects the dest position, false the source |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1001 | * |
Thomas Gleixner | cdae05a | 2014-04-28 10:49:43 +0000 | [diff] [blame] | 1002 | * Returns the position of the current active slot |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1003 | */ |
Thomas Gleixner | cdae05a | 2014-04-28 10:49:43 +0000 | [diff] [blame] | 1004 | dma_addr_t edma_get_position(unsigned slot, bool dst) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1005 | { |
Thomas Gleixner | cdae05a | 2014-04-28 10:49:43 +0000 | [diff] [blame] | 1006 | u32 offs, ctlr = EDMA_CTLR(slot); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1007 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1008 | slot = EDMA_CHAN_SLOT(slot); |
| 1009 | |
Thomas Gleixner | cdae05a | 2014-04-28 10:49:43 +0000 | [diff] [blame] | 1010 | offs = PARM_OFFSET(slot); |
| 1011 | offs += dst ? PARM_DST : PARM_SRC; |
| 1012 | |
| 1013 | return edma_read(ctlr, offs); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1014 | } |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1015 | |
| 1016 | /** |
| 1017 | * edma_set_src_index - configure DMA source address indexing |
| 1018 | * @slot: parameter RAM slot being configured |
| 1019 | * @src_bidx: byte offset between source arrays in a frame |
| 1020 | * @src_cidx: byte offset between source frames in a block |
| 1021 | * |
| 1022 | * Offsets are specified to support either contiguous or discontiguous |
| 1023 | * memory transfers, or repeated access to a hardware register, as needed. |
| 1024 | * When accessing hardware registers, both offsets are normally zero. |
| 1025 | */ |
| 1026 | void edma_set_src_index(unsigned slot, s16 src_bidx, s16 src_cidx) |
| 1027 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1028 | unsigned ctlr; |
| 1029 | |
| 1030 | ctlr = EDMA_CTLR(slot); |
| 1031 | slot = EDMA_CHAN_SLOT(slot); |
| 1032 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 1033 | if (slot < edma_cc[ctlr]->num_slots) { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1034 | edma_parm_modify(ctlr, PARM_SRC_DST_BIDX, slot, |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1035 | 0xffff0000, src_bidx); |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1036 | edma_parm_modify(ctlr, PARM_SRC_DST_CIDX, slot, |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1037 | 0xffff0000, src_cidx); |
| 1038 | } |
| 1039 | } |
| 1040 | EXPORT_SYMBOL(edma_set_src_index); |
| 1041 | |
| 1042 | /** |
| 1043 | * edma_set_dest_index - configure DMA destination address indexing |
| 1044 | * @slot: parameter RAM slot being configured |
| 1045 | * @dest_bidx: byte offset between destination arrays in a frame |
| 1046 | * @dest_cidx: byte offset between destination frames in a block |
| 1047 | * |
| 1048 | * Offsets are specified to support either contiguous or discontiguous |
| 1049 | * memory transfers, or repeated access to a hardware register, as needed. |
| 1050 | * When accessing hardware registers, both offsets are normally zero. |
| 1051 | */ |
| 1052 | void edma_set_dest_index(unsigned slot, s16 dest_bidx, s16 dest_cidx) |
| 1053 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1054 | unsigned ctlr; |
| 1055 | |
| 1056 | ctlr = EDMA_CTLR(slot); |
| 1057 | slot = EDMA_CHAN_SLOT(slot); |
| 1058 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 1059 | if (slot < edma_cc[ctlr]->num_slots) { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1060 | edma_parm_modify(ctlr, PARM_SRC_DST_BIDX, slot, |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1061 | 0x0000ffff, dest_bidx << 16); |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1062 | edma_parm_modify(ctlr, PARM_SRC_DST_CIDX, slot, |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1063 | 0x0000ffff, dest_cidx << 16); |
| 1064 | } |
| 1065 | } |
| 1066 | EXPORT_SYMBOL(edma_set_dest_index); |
| 1067 | |
| 1068 | /** |
| 1069 | * edma_set_transfer_params - configure DMA transfer parameters |
| 1070 | * @slot: parameter RAM slot being configured |
| 1071 | * @acnt: how many bytes per array (at least one) |
| 1072 | * @bcnt: how many arrays per frame (at least one) |
| 1073 | * @ccnt: how many frames per block (at least one) |
| 1074 | * @bcnt_rld: used only for A-Synchronized transfers; this specifies |
| 1075 | * the value to reload into bcnt when it decrements to zero |
| 1076 | * @sync_mode: ASYNC or ABSYNC |
| 1077 | * |
| 1078 | * See the EDMA3 documentation to understand how to configure and link |
| 1079 | * transfers using the fields in PaRAM slots. If you are not doing it |
| 1080 | * all at once with edma_write_slot(), you will use this routine |
| 1081 | * plus two calls each for source and destination, setting the initial |
| 1082 | * address and saying how to index that address. |
| 1083 | * |
| 1084 | * An example of an A-Synchronized transfer is a serial link using a |
| 1085 | * single word shift register. In that case, @acnt would be equal to |
| 1086 | * that word size; the serial controller issues a DMA synchronization |
| 1087 | * event to transfer each word, and memory access by the DMA transfer |
| 1088 | * controller will be word-at-a-time. |
| 1089 | * |
| 1090 | * An example of an AB-Synchronized transfer is a device using a FIFO. |
| 1091 | * In that case, @acnt equals the FIFO width and @bcnt equals its depth. |
| 1092 | * The controller with the FIFO issues DMA synchronization events when |
| 1093 | * the FIFO threshold is reached, and the DMA transfer controller will |
| 1094 | * transfer one frame to (or from) the FIFO. It will probably use |
| 1095 | * efficient burst modes to access memory. |
| 1096 | */ |
| 1097 | void edma_set_transfer_params(unsigned slot, |
| 1098 | u16 acnt, u16 bcnt, u16 ccnt, |
| 1099 | u16 bcnt_rld, enum sync_dimension sync_mode) |
| 1100 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1101 | unsigned ctlr; |
| 1102 | |
| 1103 | ctlr = EDMA_CTLR(slot); |
| 1104 | slot = EDMA_CHAN_SLOT(slot); |
| 1105 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 1106 | if (slot < edma_cc[ctlr]->num_slots) { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1107 | edma_parm_modify(ctlr, PARM_LINK_BCNTRLD, slot, |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1108 | 0x0000ffff, bcnt_rld << 16); |
| 1109 | if (sync_mode == ASYNC) |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1110 | edma_parm_and(ctlr, PARM_OPT, slot, ~SYNCDIM); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1111 | else |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1112 | edma_parm_or(ctlr, PARM_OPT, slot, SYNCDIM); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1113 | /* Set the acount, bcount, ccount registers */ |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1114 | edma_parm_write(ctlr, PARM_A_B_CNT, slot, (bcnt << 16) | acnt); |
| 1115 | edma_parm_write(ctlr, PARM_CCNT, slot, ccnt); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1116 | } |
| 1117 | } |
| 1118 | EXPORT_SYMBOL(edma_set_transfer_params); |
| 1119 | |
| 1120 | /** |
| 1121 | * edma_link - link one parameter RAM slot to another |
| 1122 | * @from: parameter RAM slot originating the link |
| 1123 | * @to: parameter RAM slot which is the link target |
| 1124 | * |
| 1125 | * The originating slot should not be part of any active DMA transfer. |
| 1126 | */ |
| 1127 | void edma_link(unsigned from, unsigned to) |
| 1128 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1129 | unsigned ctlr_from, ctlr_to; |
| 1130 | |
| 1131 | ctlr_from = EDMA_CTLR(from); |
| 1132 | from = EDMA_CHAN_SLOT(from); |
| 1133 | ctlr_to = EDMA_CTLR(to); |
| 1134 | to = EDMA_CHAN_SLOT(to); |
| 1135 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 1136 | if (from >= edma_cc[ctlr_from]->num_slots) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1137 | return; |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 1138 | if (to >= edma_cc[ctlr_to]->num_slots) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1139 | return; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1140 | edma_parm_modify(ctlr_from, PARM_LINK_BCNTRLD, from, 0xffff0000, |
| 1141 | PARM_OFFSET(to)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1142 | } |
| 1143 | EXPORT_SYMBOL(edma_link); |
| 1144 | |
| 1145 | /** |
| 1146 | * edma_unlink - cut link from one parameter RAM slot |
| 1147 | * @from: parameter RAM slot originating the link |
| 1148 | * |
| 1149 | * The originating slot should not be part of any active DMA transfer. |
| 1150 | * Its link is set to 0xffff. |
| 1151 | */ |
| 1152 | void edma_unlink(unsigned from) |
| 1153 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1154 | unsigned ctlr; |
| 1155 | |
| 1156 | ctlr = EDMA_CTLR(from); |
| 1157 | from = EDMA_CHAN_SLOT(from); |
| 1158 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 1159 | if (from >= edma_cc[ctlr]->num_slots) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1160 | return; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1161 | edma_parm_or(ctlr, PARM_LINK_BCNTRLD, from, 0xffff); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1162 | } |
| 1163 | EXPORT_SYMBOL(edma_unlink); |
| 1164 | |
| 1165 | /*-----------------------------------------------------------------------*/ |
| 1166 | |
| 1167 | /* Parameter RAM operations (ii) -- read/write whole parameter sets */ |
| 1168 | |
| 1169 | /** |
| 1170 | * edma_write_slot - write parameter RAM data for slot |
| 1171 | * @slot: number of parameter RAM slot being modified |
| 1172 | * @param: data to be written into parameter RAM slot |
| 1173 | * |
| 1174 | * Use this to assign all parameters of a transfer at once. This |
| 1175 | * allows more efficient setup of transfers than issuing multiple |
| 1176 | * calls to set up those parameters in small pieces, and provides |
| 1177 | * complete control over all transfer options. |
| 1178 | */ |
| 1179 | void edma_write_slot(unsigned slot, const struct edmacc_param *param) |
| 1180 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1181 | unsigned ctlr; |
| 1182 | |
| 1183 | ctlr = EDMA_CTLR(slot); |
| 1184 | slot = EDMA_CHAN_SLOT(slot); |
| 1185 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 1186 | if (slot >= edma_cc[ctlr]->num_slots) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1187 | return; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1188 | memcpy_toio(edmacc_regs_base[ctlr] + PARM_OFFSET(slot), param, |
| 1189 | PARM_SIZE); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1190 | } |
| 1191 | EXPORT_SYMBOL(edma_write_slot); |
| 1192 | |
| 1193 | /** |
| 1194 | * edma_read_slot - read parameter RAM data from slot |
| 1195 | * @slot: number of parameter RAM slot being copied |
| 1196 | * @param: where to store copy of parameter RAM data |
| 1197 | * |
| 1198 | * Use this to read data from a parameter RAM slot, perhaps to |
| 1199 | * save them as a template for later reuse. |
| 1200 | */ |
| 1201 | void edma_read_slot(unsigned slot, struct edmacc_param *param) |
| 1202 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1203 | unsigned ctlr; |
| 1204 | |
| 1205 | ctlr = EDMA_CTLR(slot); |
| 1206 | slot = EDMA_CHAN_SLOT(slot); |
| 1207 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 1208 | if (slot >= edma_cc[ctlr]->num_slots) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1209 | return; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1210 | memcpy_fromio(param, edmacc_regs_base[ctlr] + PARM_OFFSET(slot), |
| 1211 | PARM_SIZE); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1212 | } |
| 1213 | EXPORT_SYMBOL(edma_read_slot); |
| 1214 | |
| 1215 | /*-----------------------------------------------------------------------*/ |
| 1216 | |
| 1217 | /* Various EDMA channel control operations */ |
| 1218 | |
| 1219 | /** |
| 1220 | * edma_pause - pause dma on a channel |
| 1221 | * @channel: on which edma_start() has been called |
| 1222 | * |
| 1223 | * This temporarily disables EDMA hardware events on the specified channel, |
| 1224 | * preventing them from triggering new transfers on its behalf |
| 1225 | */ |
| 1226 | void edma_pause(unsigned channel) |
| 1227 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1228 | unsigned ctlr; |
| 1229 | |
| 1230 | ctlr = EDMA_CTLR(channel); |
| 1231 | channel = EDMA_CHAN_SLOT(channel); |
| 1232 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 1233 | if (channel < edma_cc[ctlr]->num_channels) { |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 1234 | unsigned int mask = BIT(channel & 0x1f); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1235 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1236 | edma_shadow0_write_array(ctlr, SH_EECR, channel >> 5, mask); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1237 | } |
| 1238 | } |
| 1239 | EXPORT_SYMBOL(edma_pause); |
| 1240 | |
| 1241 | /** |
| 1242 | * edma_resume - resumes dma on a paused channel |
| 1243 | * @channel: on which edma_pause() has been called |
| 1244 | * |
| 1245 | * This re-enables EDMA hardware events on the specified channel. |
| 1246 | */ |
| 1247 | void edma_resume(unsigned channel) |
| 1248 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1249 | unsigned ctlr; |
| 1250 | |
| 1251 | ctlr = EDMA_CTLR(channel); |
| 1252 | channel = EDMA_CHAN_SLOT(channel); |
| 1253 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 1254 | if (channel < edma_cc[ctlr]->num_channels) { |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 1255 | unsigned int mask = BIT(channel & 0x1f); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1256 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1257 | edma_shadow0_write_array(ctlr, SH_EESR, channel >> 5, mask); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1258 | } |
| 1259 | } |
| 1260 | EXPORT_SYMBOL(edma_resume); |
| 1261 | |
Joel Fernandes | 96874b9 | 2013-08-29 18:05:42 -0500 | [diff] [blame] | 1262 | int edma_trigger_channel(unsigned channel) |
| 1263 | { |
| 1264 | unsigned ctlr; |
| 1265 | unsigned int mask; |
| 1266 | |
| 1267 | ctlr = EDMA_CTLR(channel); |
| 1268 | channel = EDMA_CHAN_SLOT(channel); |
| 1269 | mask = BIT(channel & 0x1f); |
| 1270 | |
| 1271 | edma_shadow0_write_array(ctlr, SH_ESR, (channel >> 5), mask); |
| 1272 | |
| 1273 | pr_debug("EDMA: ESR%d %08x\n", (channel >> 5), |
| 1274 | edma_shadow0_read_array(ctlr, SH_ESR, (channel >> 5))); |
| 1275 | return 0; |
| 1276 | } |
| 1277 | EXPORT_SYMBOL(edma_trigger_channel); |
| 1278 | |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1279 | /** |
| 1280 | * edma_start - start dma on a channel |
| 1281 | * @channel: channel being activated |
| 1282 | * |
| 1283 | * Channels with event associations will be triggered by their hardware |
| 1284 | * events, and channels without such associations will be triggered by |
| 1285 | * software. (At this writing there is no interface for using software |
| 1286 | * triggers except with channels that don't support hardware triggers.) |
| 1287 | * |
| 1288 | * Returns zero on success, else negative errno. |
| 1289 | */ |
| 1290 | int edma_start(unsigned channel) |
| 1291 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1292 | unsigned ctlr; |
| 1293 | |
| 1294 | ctlr = EDMA_CTLR(channel); |
| 1295 | channel = EDMA_CHAN_SLOT(channel); |
| 1296 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 1297 | if (channel < edma_cc[ctlr]->num_channels) { |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1298 | int j = channel >> 5; |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 1299 | unsigned int mask = BIT(channel & 0x1f); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1300 | |
| 1301 | /* EDMA channels without event association */ |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 1302 | if (test_bit(channel, edma_cc[ctlr]->edma_unused)) { |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1303 | pr_debug("EDMA: ESR%d %08x\n", j, |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1304 | edma_shadow0_read_array(ctlr, SH_ESR, j)); |
| 1305 | edma_shadow0_write_array(ctlr, SH_ESR, j, mask); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1306 | return 0; |
| 1307 | } |
| 1308 | |
| 1309 | /* EDMA channel with event association */ |
| 1310 | pr_debug("EDMA: ER%d %08x\n", j, |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1311 | edma_shadow0_read_array(ctlr, SH_ER, j)); |
Brian Niebuhr | bb17ef1 | 2010-03-09 16:48:03 -0600 | [diff] [blame] | 1312 | /* Clear any pending event or error */ |
| 1313 | edma_write_array(ctlr, EDMA_ECR, j, mask); |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1314 | edma_write_array(ctlr, EDMA_EMCR, j, mask); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1315 | /* Clear any SER */ |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1316 | edma_shadow0_write_array(ctlr, SH_SECR, j, mask); |
| 1317 | edma_shadow0_write_array(ctlr, SH_EESR, j, mask); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1318 | pr_debug("EDMA: EER%d %08x\n", j, |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1319 | edma_shadow0_read_array(ctlr, SH_EER, j)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1320 | return 0; |
| 1321 | } |
| 1322 | |
| 1323 | return -EINVAL; |
| 1324 | } |
| 1325 | EXPORT_SYMBOL(edma_start); |
| 1326 | |
| 1327 | /** |
| 1328 | * edma_stop - stops dma on the channel passed |
| 1329 | * @channel: channel being deactivated |
| 1330 | * |
| 1331 | * When @lch is a channel, any active transfer is paused and |
| 1332 | * all pending hardware events are cleared. The current transfer |
| 1333 | * may not be resumed, and the channel's Parameter RAM should be |
| 1334 | * reinitialized before being reused. |
| 1335 | */ |
| 1336 | void edma_stop(unsigned channel) |
| 1337 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1338 | unsigned ctlr; |
| 1339 | |
| 1340 | ctlr = EDMA_CTLR(channel); |
| 1341 | channel = EDMA_CHAN_SLOT(channel); |
| 1342 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 1343 | if (channel < edma_cc[ctlr]->num_channels) { |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1344 | int j = channel >> 5; |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 1345 | unsigned int mask = BIT(channel & 0x1f); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1346 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1347 | edma_shadow0_write_array(ctlr, SH_EECR, j, mask); |
| 1348 | edma_shadow0_write_array(ctlr, SH_ECR, j, mask); |
| 1349 | edma_shadow0_write_array(ctlr, SH_SECR, j, mask); |
| 1350 | edma_write_array(ctlr, EDMA_EMCR, j, mask); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1351 | |
| 1352 | pr_debug("EDMA: EER%d %08x\n", j, |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1353 | edma_shadow0_read_array(ctlr, SH_EER, j)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1354 | |
| 1355 | /* REVISIT: consider guarding against inappropriate event |
| 1356 | * chaining by overwriting with dummy_paramset. |
| 1357 | */ |
| 1358 | } |
| 1359 | } |
| 1360 | EXPORT_SYMBOL(edma_stop); |
| 1361 | |
| 1362 | /****************************************************************************** |
| 1363 | * |
| 1364 | * It cleans ParamEntry qand bring back EDMA to initial state if media has |
| 1365 | * been removed before EDMA has finished.It is usedful for removable media. |
| 1366 | * Arguments: |
| 1367 | * ch_no - channel no |
| 1368 | * |
| 1369 | * Return: zero on success, or corresponding error no on failure |
| 1370 | * |
| 1371 | * FIXME this should not be needed ... edma_stop() should suffice. |
| 1372 | * |
| 1373 | *****************************************************************************/ |
| 1374 | |
| 1375 | void edma_clean_channel(unsigned channel) |
| 1376 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1377 | unsigned ctlr; |
| 1378 | |
| 1379 | ctlr = EDMA_CTLR(channel); |
| 1380 | channel = EDMA_CHAN_SLOT(channel); |
| 1381 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 1382 | if (channel < edma_cc[ctlr]->num_channels) { |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1383 | int j = (channel >> 5); |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 1384 | unsigned int mask = BIT(channel & 0x1f); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1385 | |
| 1386 | pr_debug("EDMA: EMR%d %08x\n", j, |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1387 | edma_read_array(ctlr, EDMA_EMR, j)); |
| 1388 | edma_shadow0_write_array(ctlr, SH_ECR, j, mask); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1389 | /* Clear the corresponding EMR bits */ |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1390 | edma_write_array(ctlr, EDMA_EMCR, j, mask); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1391 | /* Clear any SER */ |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1392 | edma_shadow0_write_array(ctlr, SH_SECR, j, mask); |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 1393 | edma_write(ctlr, EDMA_CCERRCLR, BIT(16) | BIT(1) | BIT(0)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1394 | } |
| 1395 | } |
| 1396 | EXPORT_SYMBOL(edma_clean_channel); |
| 1397 | |
| 1398 | /* |
| 1399 | * edma_clear_event - clear an outstanding event on the DMA channel |
| 1400 | * Arguments: |
| 1401 | * channel - channel number |
| 1402 | */ |
| 1403 | void edma_clear_event(unsigned channel) |
| 1404 | { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1405 | unsigned ctlr; |
| 1406 | |
| 1407 | ctlr = EDMA_CTLR(channel); |
| 1408 | channel = EDMA_CHAN_SLOT(channel); |
| 1409 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 1410 | if (channel >= edma_cc[ctlr]->num_channels) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1411 | return; |
| 1412 | if (channel < 32) |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 1413 | edma_write(ctlr, EDMA_ECR, BIT(channel)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1414 | else |
Sekhar Nori | d78a949 | 2010-05-10 12:41:18 +0530 | [diff] [blame] | 1415 | edma_write(ctlr, EDMA_ECRH, BIT(channel - 32)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1416 | } |
| 1417 | EXPORT_SYMBOL(edma_clear_event); |
| 1418 | |
Peter Ujfalusi | eb3fe7d | 2014-07-08 13:46:37 +0300 | [diff] [blame] | 1419 | /* |
| 1420 | * edma_assign_channel_eventq - move given channel to desired eventq |
| 1421 | * Arguments: |
| 1422 | * channel - channel number |
| 1423 | * eventq_no - queue to move the channel |
| 1424 | * |
| 1425 | * Can be used to move a channel to a selected event queue. |
| 1426 | */ |
| 1427 | void edma_assign_channel_eventq(unsigned channel, enum dma_event_q eventq_no) |
| 1428 | { |
| 1429 | unsigned ctlr; |
| 1430 | |
| 1431 | ctlr = EDMA_CTLR(channel); |
| 1432 | channel = EDMA_CHAN_SLOT(channel); |
| 1433 | |
| 1434 | if (channel >= edma_cc[ctlr]->num_channels) |
| 1435 | return; |
| 1436 | |
| 1437 | /* default to low priority queue */ |
| 1438 | if (eventq_no == EVENTQ_DEFAULT) |
| 1439 | eventq_no = edma_cc[ctlr]->default_queue; |
| 1440 | if (eventq_no >= edma_cc[ctlr]->num_tc) |
| 1441 | return; |
| 1442 | |
| 1443 | map_dmach_queue(ctlr, channel, eventq_no); |
| 1444 | } |
| 1445 | EXPORT_SYMBOL(edma_assign_channel_eventq); |
| 1446 | |
Peter Ujfalusi | 6d10c39 | 2014-05-16 15:17:15 +0300 | [diff] [blame] | 1447 | static int edma_setup_from_hw(struct device *dev, struct edma_soc_info *pdata, |
Peter Ujfalusi | 929a015 | 2014-08-04 15:26:56 +0300 | [diff] [blame] | 1448 | struct edma *edma_cc, int cc_id) |
Peter Ujfalusi | 6d10c39 | 2014-05-16 15:17:15 +0300 | [diff] [blame] | 1449 | { |
| 1450 | int i; |
| 1451 | u32 value, cccfg; |
| 1452 | s8 (*queue_priority_map)[2]; |
| 1453 | |
| 1454 | /* Decode the eDMA3 configuration from CCCFG register */ |
Peter Ujfalusi | 929a015 | 2014-08-04 15:26:56 +0300 | [diff] [blame] | 1455 | cccfg = edma_read(cc_id, EDMA_CCCFG); |
Peter Ujfalusi | 6d10c39 | 2014-05-16 15:17:15 +0300 | [diff] [blame] | 1456 | |
| 1457 | value = GET_NUM_REGN(cccfg); |
| 1458 | edma_cc->num_region = BIT(value); |
| 1459 | |
| 1460 | value = GET_NUM_DMACH(cccfg); |
| 1461 | edma_cc->num_channels = BIT(value + 1); |
| 1462 | |
| 1463 | value = GET_NUM_PAENTRY(cccfg); |
| 1464 | edma_cc->num_slots = BIT(value + 4); |
| 1465 | |
| 1466 | value = GET_NUM_EVQUE(cccfg); |
| 1467 | edma_cc->num_tc = value + 1; |
| 1468 | |
Peter Ujfalusi | 929a015 | 2014-08-04 15:26:56 +0300 | [diff] [blame] | 1469 | dev_dbg(dev, "eDMA3 CC%d HW configuration (cccfg: 0x%08x):\n", cc_id, |
| 1470 | cccfg); |
Peter Ujfalusi | 6d10c39 | 2014-05-16 15:17:15 +0300 | [diff] [blame] | 1471 | dev_dbg(dev, "num_region: %u\n", edma_cc->num_region); |
| 1472 | dev_dbg(dev, "num_channel: %u\n", edma_cc->num_channels); |
| 1473 | dev_dbg(dev, "num_slot: %u\n", edma_cc->num_slots); |
| 1474 | dev_dbg(dev, "num_tc: %u\n", edma_cc->num_tc); |
| 1475 | |
| 1476 | /* Nothing need to be done if queue priority is provided */ |
| 1477 | if (pdata->queue_priority_mapping) |
| 1478 | return 0; |
| 1479 | |
| 1480 | /* |
| 1481 | * Configure TC/queue priority as follows: |
| 1482 | * Q0 - priority 0 |
| 1483 | * Q1 - priority 1 |
| 1484 | * Q2 - priority 2 |
| 1485 | * ... |
| 1486 | * The meaning of priority numbers: 0 highest priority, 7 lowest |
| 1487 | * priority. So Q0 is the highest priority queue and the last queue has |
| 1488 | * the lowest priority. |
| 1489 | */ |
| 1490 | queue_priority_map = devm_kzalloc(dev, |
| 1491 | (edma_cc->num_tc + 1) * sizeof(s8), |
| 1492 | GFP_KERNEL); |
| 1493 | if (!queue_priority_map) |
| 1494 | return -ENOMEM; |
| 1495 | |
| 1496 | for (i = 0; i < edma_cc->num_tc; i++) { |
| 1497 | queue_priority_map[i][0] = i; |
| 1498 | queue_priority_map[i][1] = i; |
| 1499 | } |
| 1500 | queue_priority_map[i][0] = -1; |
| 1501 | queue_priority_map[i][1] = -1; |
| 1502 | |
| 1503 | pdata->queue_priority_mapping = queue_priority_map; |
Peter Ujfalusi | 85a7076 | 2014-07-08 13:46:36 +0300 | [diff] [blame] | 1504 | /* Default queue has the lowest priority */ |
| 1505 | pdata->default_queue = i - 1; |
Peter Ujfalusi | 6d10c39 | 2014-05-16 15:17:15 +0300 | [diff] [blame] | 1506 | |
| 1507 | return 0; |
| 1508 | } |
| 1509 | |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 1510 | #if IS_ENABLED(CONFIG_OF) && IS_ENABLED(CONFIG_DMADEVICES) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1511 | |
Thomas Gleixner | cf7eb97 | 2014-04-13 20:44:46 +0200 | [diff] [blame] | 1512 | static int edma_xbar_event_map(struct device *dev, struct device_node *node, |
| 1513 | struct edma_soc_info *pdata, size_t sz) |
Matt Porter | 2646a0e | 2013-06-20 16:06:39 -0500 | [diff] [blame] | 1514 | { |
Thomas Gleixner | cf7eb97 | 2014-04-13 20:44:46 +0200 | [diff] [blame] | 1515 | const char pname[] = "ti,edma-xbar-event-map"; |
Matt Porter | 2646a0e | 2013-06-20 16:06:39 -0500 | [diff] [blame] | 1516 | struct resource res; |
| 1517 | void __iomem *xbar; |
Thomas Gleixner | cf7eb97 | 2014-04-13 20:44:46 +0200 | [diff] [blame] | 1518 | s16 (*xbar_chans)[2]; |
| 1519 | size_t nelm = sz / sizeof(s16); |
Matt Porter | 2646a0e | 2013-06-20 16:06:39 -0500 | [diff] [blame] | 1520 | u32 shift, offset, mux; |
Thomas Gleixner | cf7eb97 | 2014-04-13 20:44:46 +0200 | [diff] [blame] | 1521 | int ret, i; |
Matt Porter | 2646a0e | 2013-06-20 16:06:39 -0500 | [diff] [blame] | 1522 | |
Thomas Gleixner | cf7eb97 | 2014-04-13 20:44:46 +0200 | [diff] [blame] | 1523 | xbar_chans = devm_kzalloc(dev, (nelm + 2) * sizeof(s16), GFP_KERNEL); |
Matt Porter | 2646a0e | 2013-06-20 16:06:39 -0500 | [diff] [blame] | 1524 | if (!xbar_chans) |
| 1525 | return -ENOMEM; |
| 1526 | |
| 1527 | ret = of_address_to_resource(node, 1, &res); |
| 1528 | if (ret) |
Thomas Gleixner | cf7eb97 | 2014-04-13 20:44:46 +0200 | [diff] [blame] | 1529 | return -ENOMEM; |
Matt Porter | 2646a0e | 2013-06-20 16:06:39 -0500 | [diff] [blame] | 1530 | |
| 1531 | xbar = devm_ioremap(dev, res.start, resource_size(&res)); |
| 1532 | if (!xbar) |
| 1533 | return -ENOMEM; |
| 1534 | |
Thomas Gleixner | cf7eb97 | 2014-04-13 20:44:46 +0200 | [diff] [blame] | 1535 | ret = of_property_read_u16_array(node, pname, (u16 *)xbar_chans, nelm); |
Matt Porter | 2646a0e | 2013-06-20 16:06:39 -0500 | [diff] [blame] | 1536 | if (ret) |
| 1537 | return -EIO; |
| 1538 | |
Thomas Gleixner | cf7eb97 | 2014-04-13 20:44:46 +0200 | [diff] [blame] | 1539 | /* Invalidate last entry for the other user of this mess */ |
| 1540 | nelm >>= 1; |
| 1541 | xbar_chans[nelm][0] = xbar_chans[nelm][1] = -1; |
| 1542 | |
| 1543 | for (i = 0; i < nelm; i++) { |
Matt Porter | 2646a0e | 2013-06-20 16:06:39 -0500 | [diff] [blame] | 1544 | shift = (xbar_chans[i][1] & 0x03) << 3; |
| 1545 | offset = xbar_chans[i][1] & 0xfffffffc; |
| 1546 | mux = readl(xbar + offset); |
| 1547 | mux &= ~(0xff << shift); |
| 1548 | mux |= xbar_chans[i][0] << shift; |
| 1549 | writel(mux, (xbar + offset)); |
| 1550 | } |
| 1551 | |
Thomas Gleixner | cf7eb97 | 2014-04-13 20:44:46 +0200 | [diff] [blame] | 1552 | pdata->xbar_chans = (const s16 (*)[2]) xbar_chans; |
Matt Porter | 2646a0e | 2013-06-20 16:06:39 -0500 | [diff] [blame] | 1553 | return 0; |
| 1554 | } |
| 1555 | |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 1556 | static int edma_of_parse_dt(struct device *dev, |
| 1557 | struct device_node *node, |
| 1558 | struct edma_soc_info *pdata) |
| 1559 | { |
Peter Ujfalusi | 6d10c39 | 2014-05-16 15:17:15 +0300 | [diff] [blame] | 1560 | int ret = 0; |
Matt Porter | 2646a0e | 2013-06-20 16:06:39 -0500 | [diff] [blame] | 1561 | struct property *prop; |
| 1562 | size_t sz; |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 1563 | struct edma_rsv_info *rsv_info; |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 1564 | |
| 1565 | rsv_info = devm_kzalloc(dev, sizeof(struct edma_rsv_info), GFP_KERNEL); |
| 1566 | if (!rsv_info) |
| 1567 | return -ENOMEM; |
| 1568 | pdata->rsv = rsv_info; |
| 1569 | |
Matt Porter | 2646a0e | 2013-06-20 16:06:39 -0500 | [diff] [blame] | 1570 | prop = of_find_property(node, "ti,edma-xbar-event-map", &sz); |
| 1571 | if (prop) |
| 1572 | ret = edma_xbar_event_map(dev, node, pdata, sz); |
| 1573 | |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 1574 | return ret; |
| 1575 | } |
| 1576 | |
| 1577 | static struct of_dma_filter_info edma_filter_info = { |
| 1578 | .filter_fn = edma_filter_fn, |
| 1579 | }; |
| 1580 | |
| 1581 | static struct edma_soc_info *edma_setup_info_from_dt(struct device *dev, |
| 1582 | struct device_node *node) |
| 1583 | { |
| 1584 | struct edma_soc_info *info; |
| 1585 | int ret; |
| 1586 | |
| 1587 | info = devm_kzalloc(dev, sizeof(struct edma_soc_info), GFP_KERNEL); |
| 1588 | if (!info) |
| 1589 | return ERR_PTR(-ENOMEM); |
| 1590 | |
| 1591 | ret = edma_of_parse_dt(dev, node, info); |
| 1592 | if (ret) |
| 1593 | return ERR_PTR(ret); |
| 1594 | |
| 1595 | dma_cap_set(DMA_SLAVE, edma_filter_info.dma_cap); |
Peter Ujfalusi | 232b223d | 2014-04-14 14:42:00 +0300 | [diff] [blame] | 1596 | dma_cap_set(DMA_CYCLIC, edma_filter_info.dma_cap); |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 1597 | of_dma_controller_register(dev->of_node, of_dma_simple_xlate, |
| 1598 | &edma_filter_info); |
| 1599 | |
| 1600 | return info; |
| 1601 | } |
| 1602 | #else |
| 1603 | static struct edma_soc_info *edma_setup_info_from_dt(struct device *dev, |
| 1604 | struct device_node *node) |
| 1605 | { |
| 1606 | return ERR_PTR(-ENOSYS); |
| 1607 | } |
| 1608 | #endif |
| 1609 | |
| 1610 | static int edma_probe(struct platform_device *pdev) |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1611 | { |
Sekhar Nori | bc3ac9f | 2010-06-29 11:35:12 +0530 | [diff] [blame] | 1612 | struct edma_soc_info **info = pdev->dev.platform_data; |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 1613 | struct edma_soc_info *ninfo[EDMA_MAX_CC] = {NULL}; |
| 1614 | s8 (*queue_priority_mapping)[2]; |
Rajashekhara, Sudhakar | 90bd4e6 | 2010-06-29 11:35:13 +0530 | [diff] [blame] | 1615 | int i, j, off, ln, found = 0; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1616 | int status = -1; |
Rajashekhara, Sudhakar | 90bd4e6 | 2010-06-29 11:35:13 +0530 | [diff] [blame] | 1617 | const s16 (*rsv_chans)[2]; |
| 1618 | const s16 (*rsv_slots)[2]; |
Matt Porter | 2646a0e | 2013-06-20 16:06:39 -0500 | [diff] [blame] | 1619 | const s16 (*xbar_chans)[2]; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1620 | int irq[EDMA_MAX_CC] = {0, 0}; |
| 1621 | int err_irq[EDMA_MAX_CC] = {0, 0}; |
| 1622 | struct resource *r[EDMA_MAX_CC] = {NULL}; |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 1623 | struct resource res[EDMA_MAX_CC]; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1624 | char res_name[10]; |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 1625 | struct device_node *node = pdev->dev.of_node; |
| 1626 | struct device *dev = &pdev->dev; |
| 1627 | int ret; |
| 1628 | |
| 1629 | if (node) { |
| 1630 | /* Check if this is a second instance registered */ |
| 1631 | if (arch_num_cc) { |
| 1632 | dev_err(dev, "only one EDMA instance is supported via DT\n"); |
| 1633 | return -ENODEV; |
| 1634 | } |
| 1635 | |
| 1636 | ninfo[0] = edma_setup_info_from_dt(dev, node); |
| 1637 | if (IS_ERR(ninfo[0])) { |
| 1638 | dev_err(dev, "failed to get DT data\n"); |
| 1639 | return PTR_ERR(ninfo[0]); |
| 1640 | } |
| 1641 | |
| 1642 | info = ninfo; |
| 1643 | } |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1644 | |
| 1645 | if (!info) |
| 1646 | return -ENODEV; |
| 1647 | |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 1648 | pm_runtime_enable(dev); |
| 1649 | ret = pm_runtime_get_sync(dev); |
| 1650 | if (ret < 0) { |
| 1651 | dev_err(dev, "pm_runtime_get_sync() failed\n"); |
| 1652 | return ret; |
| 1653 | } |
| 1654 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1655 | for (j = 0; j < EDMA_MAX_CC; j++) { |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 1656 | if (!info[j]) { |
| 1657 | if (!found) |
| 1658 | return -ENODEV; |
| 1659 | break; |
| 1660 | } |
| 1661 | if (node) { |
| 1662 | ret = of_address_to_resource(node, j, &res[j]); |
| 1663 | if (!ret) |
| 1664 | r[j] = &res[j]; |
| 1665 | } else { |
| 1666 | sprintf(res_name, "edma_cc%d", j); |
| 1667 | r[j] = platform_get_resource_byname(pdev, |
| 1668 | IORESOURCE_MEM, |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1669 | res_name); |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 1670 | } |
| 1671 | if (!r[j]) { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1672 | if (found) |
| 1673 | break; |
| 1674 | else |
| 1675 | return -ENODEV; |
Sekhar Nori | 243bc65 | 2010-05-04 14:11:36 +0530 | [diff] [blame] | 1676 | } else { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1677 | found = 1; |
Sekhar Nori | 243bc65 | 2010-05-04 14:11:36 +0530 | [diff] [blame] | 1678 | } |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1679 | |
Lad, Prabhakar | e7eff70 | 2013-06-17 20:27:58 +0530 | [diff] [blame] | 1680 | edmacc_regs_base[j] = devm_ioremap_resource(&pdev->dev, r[j]); |
| 1681 | if (IS_ERR(edmacc_regs_base[j])) |
| 1682 | return PTR_ERR(edmacc_regs_base[j]); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1683 | |
Lad, Prabhakar | e7eff70 | 2013-06-17 20:27:58 +0530 | [diff] [blame] | 1684 | edma_cc[j] = devm_kzalloc(&pdev->dev, sizeof(struct edma), |
| 1685 | GFP_KERNEL); |
| 1686 | if (!edma_cc[j]) |
| 1687 | return -ENOMEM; |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1688 | |
Peter Ujfalusi | 6d10c39 | 2014-05-16 15:17:15 +0300 | [diff] [blame] | 1689 | /* Get eDMA3 configuration from IP */ |
Peter Ujfalusi | 929a015 | 2014-08-04 15:26:56 +0300 | [diff] [blame] | 1690 | ret = edma_setup_from_hw(dev, info[j], edma_cc[j], j); |
Peter Ujfalusi | 6d10c39 | 2014-05-16 15:17:15 +0300 | [diff] [blame] | 1691 | if (ret) |
| 1692 | return ret; |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1693 | |
Sekhar Nori | bc3ac9f | 2010-06-29 11:35:12 +0530 | [diff] [blame] | 1694 | edma_cc[j]->default_queue = info[j]->default_queue; |
Sandeep Paulraj | a0f0202 | 2009-07-27 09:57:07 -0400 | [diff] [blame] | 1695 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1696 | dev_dbg(&pdev->dev, "DMA REG BASE ADDR=%p\n", |
| 1697 | edmacc_regs_base[j]); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1698 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 1699 | for (i = 0; i < edma_cc[j]->num_slots; i++) |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1700 | memcpy_toio(edmacc_regs_base[j] + PARM_OFFSET(i), |
| 1701 | &dummy_paramset, PARM_SIZE); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1702 | |
Sudhakar Rajashekhara | f900d55 | 2010-01-06 17:29:49 +0530 | [diff] [blame] | 1703 | /* Mark all channels as unused */ |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 1704 | memset(edma_cc[j]->edma_unused, 0xff, |
| 1705 | sizeof(edma_cc[j]->edma_unused)); |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1706 | |
Rajashekhara, Sudhakar | 90bd4e6 | 2010-06-29 11:35:13 +0530 | [diff] [blame] | 1707 | if (info[j]->rsv) { |
| 1708 | |
| 1709 | /* Clear the reserved channels in unused list */ |
| 1710 | rsv_chans = info[j]->rsv->rsv_chans; |
| 1711 | if (rsv_chans) { |
| 1712 | for (i = 0; rsv_chans[i][0] != -1; i++) { |
| 1713 | off = rsv_chans[i][0]; |
| 1714 | ln = rsv_chans[i][1]; |
| 1715 | clear_bits(off, ln, |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 1716 | edma_cc[j]->edma_unused); |
Rajashekhara, Sudhakar | 90bd4e6 | 2010-06-29 11:35:13 +0530 | [diff] [blame] | 1717 | } |
| 1718 | } |
| 1719 | |
| 1720 | /* Set the reserved slots in inuse list */ |
| 1721 | rsv_slots = info[j]->rsv->rsv_slots; |
| 1722 | if (rsv_slots) { |
| 1723 | for (i = 0; rsv_slots[i][0] != -1; i++) { |
| 1724 | off = rsv_slots[i][0]; |
| 1725 | ln = rsv_slots[i][1]; |
| 1726 | set_bits(off, ln, |
| 1727 | edma_cc[j]->edma_inuse); |
| 1728 | } |
| 1729 | } |
| 1730 | } |
| 1731 | |
Matt Porter | 2646a0e | 2013-06-20 16:06:39 -0500 | [diff] [blame] | 1732 | /* Clear the xbar mapped channels in unused list */ |
| 1733 | xbar_chans = info[j]->xbar_chans; |
| 1734 | if (xbar_chans) { |
| 1735 | for (i = 0; xbar_chans[i][1] != -1; i++) { |
| 1736 | off = xbar_chans[i][1]; |
| 1737 | clear_bits(off, 1, |
| 1738 | edma_cc[j]->edma_unused); |
| 1739 | } |
| 1740 | } |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 1741 | |
| 1742 | if (node) { |
| 1743 | irq[j] = irq_of_parse_and_map(node, 0); |
Peter Ujfalusi | 4416176 | 2014-05-13 10:26:01 +0300 | [diff] [blame] | 1744 | err_irq[j] = irq_of_parse_and_map(node, 2); |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 1745 | } else { |
Peter Ujfalusi | 4416176 | 2014-05-13 10:26:01 +0300 | [diff] [blame] | 1746 | char irq_name[10]; |
| 1747 | |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 1748 | sprintf(irq_name, "edma%d", j); |
| 1749 | irq[j] = platform_get_irq_byname(pdev, irq_name); |
Peter Ujfalusi | 4416176 | 2014-05-13 10:26:01 +0300 | [diff] [blame] | 1750 | |
| 1751 | sprintf(irq_name, "edma%d_err", j); |
| 1752 | err_irq[j] = platform_get_irq_byname(pdev, irq_name); |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 1753 | } |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 1754 | edma_cc[j]->irq_res_start = irq[j]; |
Peter Ujfalusi | 4416176 | 2014-05-13 10:26:01 +0300 | [diff] [blame] | 1755 | edma_cc[j]->irq_res_end = err_irq[j]; |
| 1756 | |
| 1757 | status = devm_request_irq(dev, irq[j], dma_irq_handler, 0, |
| 1758 | "edma", dev); |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1759 | if (status < 0) { |
Lad, Prabhakar | e7eff70 | 2013-06-17 20:27:58 +0530 | [diff] [blame] | 1760 | dev_dbg(&pdev->dev, |
| 1761 | "devm_request_irq %d failed --> %d\n", |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1762 | irq[j], status); |
Lad, Prabhakar | e7eff70 | 2013-06-17 20:27:58 +0530 | [diff] [blame] | 1763 | return status; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1764 | } |
| 1765 | |
Peter Ujfalusi | 4416176 | 2014-05-13 10:26:01 +0300 | [diff] [blame] | 1766 | status = devm_request_irq(dev, err_irq[j], dma_ccerr_handler, 0, |
| 1767 | "edma_error", dev); |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1768 | if (status < 0) { |
Lad, Prabhakar | e7eff70 | 2013-06-17 20:27:58 +0530 | [diff] [blame] | 1769 | dev_dbg(&pdev->dev, |
| 1770 | "devm_request_irq %d failed --> %d\n", |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1771 | err_irq[j], status); |
Lad, Prabhakar | e7eff70 | 2013-06-17 20:27:58 +0530 | [diff] [blame] | 1772 | return status; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1773 | } |
| 1774 | |
Sekhar Nori | 3f68b98 | 2010-05-04 14:11:35 +0530 | [diff] [blame] | 1775 | for (i = 0; i < edma_cc[j]->num_channels; i++) |
Heiko Schocher | 0b7580b | 2012-01-19 08:05:21 +0100 | [diff] [blame] | 1776 | map_dmach_queue(j, i, info[j]->default_queue); |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1777 | |
Sekhar Nori | bc3ac9f | 2010-06-29 11:35:12 +0530 | [diff] [blame] | 1778 | queue_priority_mapping = info[j]->queue_priority_mapping; |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1779 | |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1780 | /* Event queue priority mapping */ |
| 1781 | for (i = 0; queue_priority_mapping[i][0] != -1; i++) |
| 1782 | assign_priority_to_queue(j, |
| 1783 | queue_priority_mapping[i][0], |
| 1784 | queue_priority_mapping[i][1]); |
| 1785 | |
| 1786 | /* Map the channel to param entry if channel mapping logic |
| 1787 | * exist |
| 1788 | */ |
| 1789 | if (edma_read(j, EDMA_CCCFG) & CHMAP_EXIST) |
| 1790 | map_dmach_param(j); |
| 1791 | |
Peter Ujfalusi | 643efcf | 2014-05-16 15:17:14 +0300 | [diff] [blame] | 1792 | for (i = 0; i < edma_cc[j]->num_region; i++) { |
Sudhakar Rajashekhara | 60902a2 | 2009-05-21 07:41:35 -0400 | [diff] [blame] | 1793 | edma_write_array2(j, EDMA_DRAE, i, 0, 0x0); |
| 1794 | edma_write_array2(j, EDMA_DRAE, i, 1, 0x0); |
| 1795 | edma_write_array(j, EDMA_QRAE, i, 0x0); |
| 1796 | } |
Daniel Mack | a2b1175 | 2014-08-26 10:52:53 +0200 | [diff] [blame] | 1797 | edma_cc[j]->info = info[j]; |
Sudhakar Rajashekhara | 2d51750 | 2010-01-06 17:28:44 +0530 | [diff] [blame] | 1798 | arch_num_cc++; |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1799 | } |
| 1800 | |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1801 | return 0; |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1802 | } |
| 1803 | |
Arnd Bergmann | a850c42 | 2014-11-21 11:48:54 +0100 | [diff] [blame^] | 1804 | #ifdef CONFIG_PM_SLEEP |
Daniel Mack | a2b1175 | 2014-08-26 10:52:53 +0200 | [diff] [blame] | 1805 | static int edma_pm_resume(struct device *dev) |
| 1806 | { |
| 1807 | int i, j; |
| 1808 | |
| 1809 | for (j = 0; j < arch_num_cc; j++) { |
| 1810 | struct edma *cc = edma_cc[j]; |
| 1811 | |
| 1812 | s8 (*queue_priority_mapping)[2]; |
| 1813 | |
| 1814 | queue_priority_mapping = cc->info->queue_priority_mapping; |
| 1815 | |
| 1816 | /* Event queue priority mapping */ |
| 1817 | for (i = 0; queue_priority_mapping[i][0] != -1; i++) |
| 1818 | assign_priority_to_queue(j, |
| 1819 | queue_priority_mapping[i][0], |
| 1820 | queue_priority_mapping[i][1]); |
| 1821 | |
| 1822 | /* |
| 1823 | * Map the channel to param entry if channel mapping logic |
| 1824 | * exist |
| 1825 | */ |
| 1826 | if (edma_read(j, EDMA_CCCFG) & CHMAP_EXIST) |
| 1827 | map_dmach_param(j); |
| 1828 | |
| 1829 | for (i = 0; i < cc->num_channels; i++) { |
| 1830 | if (test_bit(i, cc->edma_inuse)) { |
| 1831 | /* ensure access through shadow region 0 */ |
| 1832 | edma_or_array2(j, EDMA_DRAE, 0, i >> 5, |
| 1833 | BIT(i & 0x1f)); |
| 1834 | |
| 1835 | setup_dma_interrupt(i, |
| 1836 | cc->intr_data[i].callback, |
| 1837 | cc->intr_data[i].data); |
| 1838 | } |
| 1839 | } |
| 1840 | } |
| 1841 | |
| 1842 | return 0; |
| 1843 | } |
Arnd Bergmann | a850c42 | 2014-11-21 11:48:54 +0100 | [diff] [blame^] | 1844 | #endif |
Daniel Mack | a2b1175 | 2014-08-26 10:52:53 +0200 | [diff] [blame] | 1845 | |
| 1846 | static const struct dev_pm_ops edma_pm_ops = { |
| 1847 | SET_LATE_SYSTEM_SLEEP_PM_OPS(NULL, edma_pm_resume) |
| 1848 | }; |
| 1849 | |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1850 | static struct platform_driver edma_driver = { |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 1851 | .driver = { |
| 1852 | .name = "edma", |
Daniel Mack | a2b1175 | 2014-08-26 10:52:53 +0200 | [diff] [blame] | 1853 | .pm = &edma_pm_ops, |
Matt Porter | 6cba435 | 2013-06-20 16:06:38 -0500 | [diff] [blame] | 1854 | .of_match_table = edma_of_ids, |
| 1855 | }, |
| 1856 | .probe = edma_probe, |
Kevin Hilman | a4768d2 | 2009-04-14 07:18:14 -0500 | [diff] [blame] | 1857 | }; |
| 1858 | |
| 1859 | static int __init edma_init(void) |
| 1860 | { |
| 1861 | return platform_driver_probe(&edma_driver, edma_probe); |
| 1862 | } |
| 1863 | arch_initcall(edma_init); |
| 1864 | |