Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1 | /* |
Bob Liu | 5ddebe5 | 2012-03-19 13:50:27 +0800 | [diff] [blame] | 2 | * bfin_dma.c - Blackfin DMA implementation |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 3 | * |
Mike Frysinger | 9c417a4 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 4 | * Copyright 2004-2008 Analog Devices Inc. |
Robin Getz | 96f1050 | 2009-09-24 14:11:24 +0000 | [diff] [blame] | 5 | * |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 6 | * Licensed under the GPL-2 or later. |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <linux/errno.h> |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 10 | #include <linux/interrupt.h> |
| 11 | #include <linux/kernel.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 12 | #include <linux/module.h> |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 13 | #include <linux/param.h> |
Graf Yang | d642a8a | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 14 | #include <linux/proc_fs.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 15 | #include <linux/sched.h> |
Graf Yang | d642a8a | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 16 | #include <linux/seq_file.h> |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 17 | #include <linux/spinlock.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 18 | |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 19 | #include <asm/blackfin.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 20 | #include <asm/cacheflush.h> |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 21 | #include <asm/dma.h> |
| 22 | #include <asm/uaccess.h> |
Robin Getz | 837ec2d | 2009-07-07 20:17:09 +0000 | [diff] [blame] | 23 | #include <asm/early_printk.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 24 | |
Robin Getz | 76068c3 | 2009-04-23 20:56:42 +0000 | [diff] [blame] | 25 | /* |
| 26 | * To make sure we work around 05000119 - we always check DMA_DONE bit, |
| 27 | * never the DMA_RUN bit |
| 28 | */ |
| 29 | |
Mike Frysinger | 9c417a4 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 30 | struct dma_channel dma_ch[MAX_DMA_CHANNELS]; |
| 31 | EXPORT_SYMBOL(dma_ch); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 32 | |
Mike Frysinger | a161bb0 | 2007-05-21 18:09:14 +0800 | [diff] [blame] | 33 | static int __init blackfin_dma_init(void) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 34 | { |
| 35 | int i; |
| 36 | |
| 37 | printk(KERN_INFO "Blackfin DMA Controller\n"); |
| 38 | |
Steven Miao | f9691bb | 2011-05-05 14:14:48 +0800 | [diff] [blame] | 39 | |
| 40 | #if ANOMALY_05000480 |
| 41 | bfin_write_DMAC_TC_PER(0x0111); |
| 42 | #endif |
| 43 | |
Mike Frysinger | 211daf9 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 44 | for (i = 0; i < MAX_DMA_CHANNELS; i++) { |
Mike Frysinger | d2e015d | 2009-10-09 22:18:12 +0000 | [diff] [blame] | 45 | atomic_set(&dma_ch[i].chan_status, 0); |
Bernd Schmidt | 7795566 | 2008-04-24 05:31:18 +0800 | [diff] [blame] | 46 | dma_ch[i].regs = dma_io_base_addr[i]; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 47 | } |
Steven Miao | e70f466 | 2012-05-25 11:32:03 +0800 | [diff] [blame] | 48 | #if defined(CH_MEM_STREAM3_SRC) && defined(CONFIG_BF60x) |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 49 | /* Mark MEMDMA Channel 3 as requested since we're using it internally */ |
| 50 | request_dma(CH_MEM_STREAM3_DEST, "Blackfin dma_memcpy"); |
| 51 | request_dma(CH_MEM_STREAM3_SRC, "Blackfin dma_memcpy"); |
| 52 | #else |
Michael Hennerich | 23ee968 | 2007-05-21 18:09:17 +0800 | [diff] [blame] | 53 | /* Mark MEMDMA Channel 0 as requested since we're using it internally */ |
Graf Yang | d642a8a | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 54 | request_dma(CH_MEM_STREAM0_DEST, "Blackfin dma_memcpy"); |
| 55 | request_dma(CH_MEM_STREAM0_SRC, "Blackfin dma_memcpy"); |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 56 | #endif |
Michael Hennerich | a924db7 | 2007-08-03 17:43:29 +0800 | [diff] [blame] | 57 | |
| 58 | #if defined(CONFIG_DEB_DMA_URGENT) |
| 59 | bfin_write_EBIU_DDRQUE(bfin_read_EBIU_DDRQUE() |
| 60 | | DEB1_URGENT | DEB2_URGENT | DEB3_URGENT); |
| 61 | #endif |
Graf Yang | d642a8a | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 62 | |
| 63 | return 0; |
| 64 | } |
| 65 | arch_initcall(blackfin_dma_init); |
| 66 | |
| 67 | #ifdef CONFIG_PROC_FS |
Graf Yang | d642a8a | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 68 | static int proc_dma_show(struct seq_file *m, void *v) |
| 69 | { |
| 70 | int i; |
| 71 | |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 72 | for (i = 0; i < MAX_DMA_CHANNELS; ++i) |
Mike Frysinger | d2e015d | 2009-10-09 22:18:12 +0000 | [diff] [blame] | 73 | if (dma_channel_active(i)) |
Graf Yang | d642a8a | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 74 | seq_printf(m, "%2d: %s\n", i, dma_ch[i].device_id); |
| 75 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 76 | return 0; |
| 77 | } |
| 78 | |
Graf Yang | d642a8a | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 79 | static int proc_dma_open(struct inode *inode, struct file *file) |
| 80 | { |
| 81 | return single_open(file, proc_dma_show, NULL); |
| 82 | } |
| 83 | |
| 84 | static const struct file_operations proc_dma_operations = { |
| 85 | .open = proc_dma_open, |
| 86 | .read = seq_read, |
| 87 | .llseek = seq_lseek, |
| 88 | .release = single_release, |
| 89 | }; |
| 90 | |
| 91 | static int __init proc_dma_init(void) |
| 92 | { |
Steven Miao | 1a12145 | 2012-05-03 15:40:26 +0800 | [diff] [blame] | 93 | proc_create("dma", 0, NULL, &proc_dma_operations); |
| 94 | return 0; |
Graf Yang | d642a8a | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 95 | } |
| 96 | late_initcall(proc_dma_init); |
| 97 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 98 | |
steven miao | 5583517 | 2010-10-22 08:48:41 +0000 | [diff] [blame] | 99 | static void set_dma_peripheral_map(unsigned int channel, const char *device_id) |
| 100 | { |
| 101 | #ifdef CONFIG_BF54x |
| 102 | unsigned int per_map; |
| 103 | |
| 104 | switch (channel) { |
| 105 | case CH_UART2_RX: per_map = 0xC << 12; break; |
| 106 | case CH_UART2_TX: per_map = 0xD << 12; break; |
| 107 | case CH_UART3_RX: per_map = 0xE << 12; break; |
| 108 | case CH_UART3_TX: per_map = 0xF << 12; break; |
| 109 | default: return; |
| 110 | } |
| 111 | |
| 112 | if (strncmp(device_id, "BFIN_UART", 9) == 0) |
| 113 | dma_ch[channel].regs->peripheral_map = per_map; |
| 114 | #endif |
| 115 | } |
| 116 | |
Mike Frysinger | 9c417a4 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 117 | /** |
| 118 | * request_dma - request a DMA channel |
| 119 | * |
| 120 | * Request the specific DMA channel from the system if it's available. |
| 121 | */ |
Michael McTernan | 99532fd | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 122 | int request_dma(unsigned int channel, const char *device_id) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 123 | { |
Frans Pop | 2bc4aff | 2010-02-06 18:47:18 +0100 | [diff] [blame] | 124 | pr_debug("request_dma() : BEGIN\n"); |
Michael Hennerich | 5ce998c | 2008-05-17 15:57:01 +0800 | [diff] [blame] | 125 | |
Graf Yang | d642a8a | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 126 | if (device_id == NULL) |
| 127 | printk(KERN_WARNING "request_dma(%u): no device_id given\n", channel); |
| 128 | |
Michael Hennerich | 5ce998c | 2008-05-17 15:57:01 +0800 | [diff] [blame] | 129 | #if defined(CONFIG_BF561) && ANOMALY_05000182 |
| 130 | if (channel >= CH_IMEM_STREAM0_DEST && channel <= CH_IMEM_STREAM1_DEST) { |
| 131 | if (get_cclk() > 500000000) { |
| 132 | printk(KERN_WARNING |
| 133 | "Request IMDMA failed due to ANOMALY 05000182\n"); |
| 134 | return -EFAULT; |
| 135 | } |
| 136 | } |
| 137 | #endif |
| 138 | |
Mike Frysinger | d2e015d | 2009-10-09 22:18:12 +0000 | [diff] [blame] | 139 | if (atomic_cmpxchg(&dma_ch[channel].chan_status, 0, 1)) { |
Frans Pop | 2bc4aff | 2010-02-06 18:47:18 +0100 | [diff] [blame] | 140 | pr_debug("DMA CHANNEL IN USE\n"); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 141 | return -EBUSY; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 142 | } |
| 143 | |
steven miao | 5583517 | 2010-10-22 08:48:41 +0000 | [diff] [blame] | 144 | set_dma_peripheral_map(channel, device_id); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 145 | dma_ch[channel].device_id = device_id; |
Mike Frysinger | 9b01140 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 146 | dma_ch[channel].irq = 0; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 147 | |
| 148 | /* This is to be enabled by putting a restriction - |
| 149 | * you have to request DMA, before doing any operations on |
| 150 | * descriptor/channel |
| 151 | */ |
Frans Pop | 2bc4aff | 2010-02-06 18:47:18 +0100 | [diff] [blame] | 152 | pr_debug("request_dma() : END\n"); |
Mike Frysinger | 596b565 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 153 | return 0; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 154 | } |
| 155 | EXPORT_SYMBOL(request_dma); |
| 156 | |
Mike Frysinger | 68532bd | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 157 | int set_dma_callback(unsigned int channel, irq_handler_t callback, void *data) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 158 | { |
Mike Frysinger | e34132f | 2009-11-24 18:36:36 +0000 | [diff] [blame] | 159 | int ret; |
| 160 | unsigned int irq; |
| 161 | |
| 162 | BUG_ON(channel >= MAX_DMA_CHANNELS || !callback || |
Mike Frysinger | d2e015d | 2009-10-09 22:18:12 +0000 | [diff] [blame] | 163 | !atomic_read(&dma_ch[channel].chan_status)); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 164 | |
Mike Frysinger | e34132f | 2009-11-24 18:36:36 +0000 | [diff] [blame] | 165 | irq = channel2irq(channel); |
| 166 | ret = request_irq(irq, callback, 0, dma_ch[channel].device_id, data); |
| 167 | if (ret) |
| 168 | return ret; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 169 | |
Mike Frysinger | e34132f | 2009-11-24 18:36:36 +0000 | [diff] [blame] | 170 | dma_ch[channel].irq = irq; |
| 171 | dma_ch[channel].data = data; |
Mike Frysinger | 8f1cc23 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 172 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 173 | return 0; |
| 174 | } |
| 175 | EXPORT_SYMBOL(set_dma_callback); |
| 176 | |
Mike Frysinger | 9c417a4 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 177 | /** |
| 178 | * clear_dma_buffer - clear DMA fifos for specified channel |
| 179 | * |
| 180 | * Set the Buffer Clear bit in the Configuration register of specific DMA |
| 181 | * channel. This will stop the descriptor based DMA operation. |
| 182 | */ |
| 183 | static void clear_dma_buffer(unsigned int channel) |
| 184 | { |
| 185 | dma_ch[channel].regs->cfg |= RESTART; |
| 186 | SSYNC(); |
| 187 | dma_ch[channel].regs->cfg &= ~RESTART; |
| 188 | } |
| 189 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 190 | void free_dma(unsigned int channel) |
| 191 | { |
Frans Pop | 2bc4aff | 2010-02-06 18:47:18 +0100 | [diff] [blame] | 192 | pr_debug("freedma() : BEGIN\n"); |
Roel Kluin | ac86075 | 2009-08-02 14:26:48 +0200 | [diff] [blame] | 193 | BUG_ON(channel >= MAX_DMA_CHANNELS || |
Mike Frysinger | d2e015d | 2009-10-09 22:18:12 +0000 | [diff] [blame] | 194 | !atomic_read(&dma_ch[channel].chan_status)); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 195 | |
| 196 | /* Halt the DMA */ |
| 197 | disable_dma(channel); |
| 198 | clear_dma_buffer(channel); |
| 199 | |
Mike Frysinger | 9b01140 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 200 | if (dma_ch[channel].irq) |
Michael Hennerich | a2ba8b1 | 2008-10-28 18:19:29 +0800 | [diff] [blame] | 201 | free_irq(dma_ch[channel].irq, dma_ch[channel].data); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 202 | |
| 203 | /* Clear the DMA Variable in the Channel */ |
Mike Frysinger | d2e015d | 2009-10-09 22:18:12 +0000 | [diff] [blame] | 204 | atomic_set(&dma_ch[channel].chan_status, 0); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 205 | |
Frans Pop | 2bc4aff | 2010-02-06 18:47:18 +0100 | [diff] [blame] | 206 | pr_debug("freedma() : END\n"); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 207 | } |
| 208 | EXPORT_SYMBOL(free_dma); |
| 209 | |
Michael Hennerich | 1efc80b | 2008-07-19 16:57:32 +0800 | [diff] [blame] | 210 | #ifdef CONFIG_PM |
Mike Frysinger | c9e0020 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 211 | # ifndef MAX_DMA_SUSPEND_CHANNELS |
| 212 | # define MAX_DMA_SUSPEND_CHANNELS MAX_DMA_CHANNELS |
| 213 | # endif |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 214 | # ifndef CONFIG_BF60x |
Michael Hennerich | 1efc80b | 2008-07-19 16:57:32 +0800 | [diff] [blame] | 215 | int blackfin_dma_suspend(void) |
| 216 | { |
| 217 | int i; |
| 218 | |
Mike Frysinger | d2e015d | 2009-10-09 22:18:12 +0000 | [diff] [blame] | 219 | for (i = 0; i < MAX_DMA_CHANNELS; ++i) { |
| 220 | if (dma_ch[i].regs->cfg & DMAEN) { |
Michael Hennerich | 1efc80b | 2008-07-19 16:57:32 +0800 | [diff] [blame] | 221 | printk(KERN_ERR "DMA Channel %d failed to suspend\n", i); |
| 222 | return -EBUSY; |
| 223 | } |
Mike Frysinger | d2e015d | 2009-10-09 22:18:12 +0000 | [diff] [blame] | 224 | if (i < MAX_DMA_SUSPEND_CHANNELS) |
| 225 | dma_ch[i].saved_peripheral_map = dma_ch[i].regs->peripheral_map; |
Michael Hennerich | 1efc80b | 2008-07-19 16:57:32 +0800 | [diff] [blame] | 226 | } |
| 227 | |
Bob Liu | 5ddebe5 | 2012-03-19 13:50:27 +0800 | [diff] [blame] | 228 | #if ANOMALY_05000480 |
| 229 | bfin_write_DMAC_TC_PER(0x0); |
| 230 | #endif |
Michael Hennerich | 1efc80b | 2008-07-19 16:57:32 +0800 | [diff] [blame] | 231 | return 0; |
| 232 | } |
| 233 | |
| 234 | void blackfin_dma_resume(void) |
| 235 | { |
| 236 | int i; |
Michael Hennerich | 865bddf | 2009-10-20 13:38:04 +0000 | [diff] [blame] | 237 | |
| 238 | for (i = 0; i < MAX_DMA_CHANNELS; ++i) { |
| 239 | dma_ch[i].regs->cfg = 0; |
Michael Hennerich | 865bddf | 2009-10-20 13:38:04 +0000 | [diff] [blame] | 240 | if (i < MAX_DMA_SUSPEND_CHANNELS) |
| 241 | dma_ch[i].regs->peripheral_map = dma_ch[i].saved_peripheral_map; |
| 242 | } |
Bob Liu | 5ddebe5 | 2012-03-19 13:50:27 +0800 | [diff] [blame] | 243 | #if ANOMALY_05000480 |
| 244 | bfin_write_DMAC_TC_PER(0x0111); |
| 245 | #endif |
Michael Hennerich | 1efc80b | 2008-07-19 16:57:32 +0800 | [diff] [blame] | 246 | } |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 247 | # else |
| 248 | int blackfin_dma_suspend(void) |
| 249 | { |
| 250 | return 0; |
| 251 | } |
| 252 | |
| 253 | void blackfin_dma_resume(void) |
| 254 | { |
| 255 | } |
| 256 | #endif |
Michael Hennerich | 1efc80b | 2008-07-19 16:57:32 +0800 | [diff] [blame] | 257 | #endif |
| 258 | |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 259 | /** |
| 260 | * blackfin_dma_early_init - minimal DMA init |
| 261 | * |
| 262 | * Setup a few DMA registers so we can safely do DMA transfers early on in |
| 263 | * the kernel booting process. Really this just means using dma_memcpy(). |
| 264 | */ |
| 265 | void __init blackfin_dma_early_init(void) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 266 | { |
Robin Getz | 837ec2d | 2009-07-07 20:17:09 +0000 | [diff] [blame] | 267 | early_shadow_stamp(); |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 268 | bfin_write_MDMA_S0_CONFIG(0); |
Robin Getz | fecbd73 | 2009-04-23 20:49:43 +0000 | [diff] [blame] | 269 | bfin_write_MDMA_S1_CONFIG(0); |
| 270 | } |
| 271 | |
| 272 | void __init early_dma_memcpy(void *pdst, const void *psrc, size_t size) |
| 273 | { |
| 274 | unsigned long dst = (unsigned long)pdst; |
| 275 | unsigned long src = (unsigned long)psrc; |
| 276 | struct dma_register *dst_ch, *src_ch; |
| 277 | |
Robin Getz | 837ec2d | 2009-07-07 20:17:09 +0000 | [diff] [blame] | 278 | early_shadow_stamp(); |
| 279 | |
Robin Getz | fecbd73 | 2009-04-23 20:49:43 +0000 | [diff] [blame] | 280 | /* We assume that everything is 4 byte aligned, so include |
| 281 | * a basic sanity check |
| 282 | */ |
| 283 | BUG_ON(dst % 4); |
| 284 | BUG_ON(src % 4); |
| 285 | BUG_ON(size % 4); |
| 286 | |
Mike Frysinger | 532f07c | 2009-06-29 22:45:50 +0000 | [diff] [blame] | 287 | src_ch = 0; |
| 288 | /* Find an avalible memDMA channel */ |
| 289 | while (1) { |
| 290 | if (src_ch == (struct dma_register *)MDMA_S0_NEXT_DESC_PTR) { |
| 291 | dst_ch = (struct dma_register *)MDMA_D1_NEXT_DESC_PTR; |
| 292 | src_ch = (struct dma_register *)MDMA_S1_NEXT_DESC_PTR; |
| 293 | } else { |
| 294 | dst_ch = (struct dma_register *)MDMA_D0_NEXT_DESC_PTR; |
| 295 | src_ch = (struct dma_register *)MDMA_S0_NEXT_DESC_PTR; |
| 296 | } |
| 297 | |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 298 | if (!DMA_MMR_READ(&src_ch->cfg)) |
Mike Frysinger | 532f07c | 2009-06-29 22:45:50 +0000 | [diff] [blame] | 299 | break; |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 300 | else if (DMA_MMR_READ(&dst_ch->irq_status) & DMA_DONE) { |
| 301 | DMA_MMR_WRITE(&src_ch->cfg, 0); |
Mike Frysinger | 532f07c | 2009-06-29 22:45:50 +0000 | [diff] [blame] | 302 | break; |
| 303 | } |
| 304 | } |
| 305 | |
Robin Getz | fecbd73 | 2009-04-23 20:49:43 +0000 | [diff] [blame] | 306 | /* Force a sync in case a previous config reset on this channel |
| 307 | * occurred. This is needed so subsequent writes to DMA registers |
| 308 | * are not spuriously lost/corrupted. |
| 309 | */ |
| 310 | __builtin_bfin_ssync(); |
| 311 | |
Robin Getz | fecbd73 | 2009-04-23 20:49:43 +0000 | [diff] [blame] | 312 | /* Destination */ |
| 313 | bfin_write32(&dst_ch->start_addr, dst); |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 314 | DMA_MMR_WRITE(&dst_ch->x_count, size >> 2); |
| 315 | DMA_MMR_WRITE(&dst_ch->x_modify, 1 << 2); |
| 316 | DMA_MMR_WRITE(&dst_ch->irq_status, DMA_DONE | DMA_ERR); |
Robin Getz | fecbd73 | 2009-04-23 20:49:43 +0000 | [diff] [blame] | 317 | |
| 318 | /* Source */ |
| 319 | bfin_write32(&src_ch->start_addr, src); |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 320 | DMA_MMR_WRITE(&src_ch->x_count, size >> 2); |
| 321 | DMA_MMR_WRITE(&src_ch->x_modify, 1 << 2); |
| 322 | DMA_MMR_WRITE(&src_ch->irq_status, DMA_DONE | DMA_ERR); |
Robin Getz | fecbd73 | 2009-04-23 20:49:43 +0000 | [diff] [blame] | 323 | |
| 324 | /* Enable */ |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 325 | DMA_MMR_WRITE(&src_ch->cfg, DMAEN | WDSIZE_32); |
| 326 | DMA_MMR_WRITE(&dst_ch->cfg, WNR | DI_EN_X | DMAEN | WDSIZE_32); |
Robin Getz | fecbd73 | 2009-04-23 20:49:43 +0000 | [diff] [blame] | 327 | |
| 328 | /* Since we are atomic now, don't use the workaround ssync */ |
| 329 | __builtin_bfin_ssync(); |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 330 | |
| 331 | #ifdef CONFIG_BF60x |
| 332 | /* Work around a possible MDMA anomaly. Running 2 MDMA channels to |
| 333 | * transfer DDR data to L1 SRAM may corrupt data. |
| 334 | * Should be reverted after this issue is root caused. |
| 335 | */ |
| 336 | while (!(DMA_MMR_READ(&dst_ch->irq_status) & DMA_DONE)) |
| 337 | continue; |
| 338 | #endif |
Robin Getz | fecbd73 | 2009-04-23 20:49:43 +0000 | [diff] [blame] | 339 | } |
| 340 | |
| 341 | void __init early_dma_memcpy_done(void) |
| 342 | { |
Robin Getz | 837ec2d | 2009-07-07 20:17:09 +0000 | [diff] [blame] | 343 | early_shadow_stamp(); |
| 344 | |
Robin Getz | fecbd73 | 2009-04-23 20:49:43 +0000 | [diff] [blame] | 345 | while ((bfin_read_MDMA_S0_CONFIG() && !(bfin_read_MDMA_D0_IRQ_STATUS() & DMA_DONE)) || |
| 346 | (bfin_read_MDMA_S1_CONFIG() && !(bfin_read_MDMA_D1_IRQ_STATUS() & DMA_DONE))) |
| 347 | continue; |
| 348 | |
| 349 | bfin_write_MDMA_D0_IRQ_STATUS(DMA_DONE | DMA_ERR); |
| 350 | bfin_write_MDMA_D1_IRQ_STATUS(DMA_DONE | DMA_ERR); |
| 351 | /* |
| 352 | * Now that DMA is done, we would normally flush cache, but |
| 353 | * i/d cache isn't running this early, so we don't bother, |
| 354 | * and just clear out the DMA channel for next time |
| 355 | */ |
| 356 | bfin_write_MDMA_S0_CONFIG(0); |
| 357 | bfin_write_MDMA_S1_CONFIG(0); |
| 358 | bfin_write_MDMA_D0_CONFIG(0); |
| 359 | bfin_write_MDMA_D1_CONFIG(0); |
| 360 | |
| 361 | __builtin_bfin_ssync(); |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 362 | } |
| 363 | |
Steven Miao | e70f466 | 2012-05-25 11:32:03 +0800 | [diff] [blame] | 364 | #if defined(CH_MEM_STREAM3_SRC) && defined(CONFIG_BF60x) |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 365 | #define bfin_read_MDMA_S_CONFIG bfin_read_MDMA_S3_CONFIG |
| 366 | #define bfin_write_MDMA_S_CONFIG bfin_write_MDMA_S3_CONFIG |
| 367 | #define bfin_write_MDMA_S_START_ADDR bfin_write_MDMA_S3_START_ADDR |
| 368 | #define bfin_write_MDMA_S_IRQ_STATUS bfin_write_MDMA_S3_IRQ_STATUS |
| 369 | #define bfin_write_MDMA_S_X_COUNT bfin_write_MDMA_S3_X_COUNT |
| 370 | #define bfin_write_MDMA_S_X_MODIFY bfin_write_MDMA_S3_X_MODIFY |
| 371 | #define bfin_write_MDMA_S_Y_COUNT bfin_write_MDMA_S3_Y_COUNT |
| 372 | #define bfin_write_MDMA_S_Y_MODIFY bfin_write_MDMA_S3_Y_MODIFY |
| 373 | #define bfin_write_MDMA_D_CONFIG bfin_write_MDMA_D3_CONFIG |
| 374 | #define bfin_write_MDMA_D_START_ADDR bfin_write_MDMA_D3_START_ADDR |
| 375 | #define bfin_read_MDMA_D_IRQ_STATUS bfin_read_MDMA_D3_IRQ_STATUS |
| 376 | #define bfin_write_MDMA_D_IRQ_STATUS bfin_write_MDMA_D3_IRQ_STATUS |
| 377 | #define bfin_write_MDMA_D_X_COUNT bfin_write_MDMA_D3_X_COUNT |
| 378 | #define bfin_write_MDMA_D_X_MODIFY bfin_write_MDMA_D3_X_MODIFY |
| 379 | #define bfin_write_MDMA_D_Y_COUNT bfin_write_MDMA_D3_Y_COUNT |
| 380 | #define bfin_write_MDMA_D_Y_MODIFY bfin_write_MDMA_D3_Y_MODIFY |
| 381 | #else |
| 382 | #define bfin_read_MDMA_S_CONFIG bfin_read_MDMA_S0_CONFIG |
| 383 | #define bfin_write_MDMA_S_CONFIG bfin_write_MDMA_S0_CONFIG |
| 384 | #define bfin_write_MDMA_S_START_ADDR bfin_write_MDMA_S0_START_ADDR |
| 385 | #define bfin_write_MDMA_S_IRQ_STATUS bfin_write_MDMA_S0_IRQ_STATUS |
| 386 | #define bfin_write_MDMA_S_X_COUNT bfin_write_MDMA_S0_X_COUNT |
| 387 | #define bfin_write_MDMA_S_X_MODIFY bfin_write_MDMA_S0_X_MODIFY |
| 388 | #define bfin_write_MDMA_S_Y_COUNT bfin_write_MDMA_S0_Y_COUNT |
| 389 | #define bfin_write_MDMA_S_Y_MODIFY bfin_write_MDMA_S0_Y_MODIFY |
| 390 | #define bfin_write_MDMA_D_CONFIG bfin_write_MDMA_D0_CONFIG |
| 391 | #define bfin_write_MDMA_D_START_ADDR bfin_write_MDMA_D0_START_ADDR |
| 392 | #define bfin_read_MDMA_D_IRQ_STATUS bfin_read_MDMA_D0_IRQ_STATUS |
| 393 | #define bfin_write_MDMA_D_IRQ_STATUS bfin_write_MDMA_D0_IRQ_STATUS |
| 394 | #define bfin_write_MDMA_D_X_COUNT bfin_write_MDMA_D0_X_COUNT |
| 395 | #define bfin_write_MDMA_D_X_MODIFY bfin_write_MDMA_D0_X_MODIFY |
| 396 | #define bfin_write_MDMA_D_Y_COUNT bfin_write_MDMA_D0_Y_COUNT |
| 397 | #define bfin_write_MDMA_D_Y_MODIFY bfin_write_MDMA_D0_Y_MODIFY |
| 398 | #endif |
| 399 | |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 400 | /** |
| 401 | * __dma_memcpy - program the MDMA registers |
| 402 | * |
| 403 | * Actually program MDMA0 and wait for the transfer to finish. Disable IRQs |
| 404 | * while programming registers so that everything is fully configured. Wait |
| 405 | * for DMA to finish with IRQs enabled. If interrupted, the initial DMA_DONE |
| 406 | * check will make sure we don't clobber any existing transfer. |
| 407 | */ |
| 408 | static void __dma_memcpy(u32 daddr, s16 dmod, u32 saddr, s16 smod, size_t cnt, u32 conf) |
| 409 | { |
| 410 | static DEFINE_SPINLOCK(mdma_lock); |
Michael Hennerich | 23ee968 | 2007-05-21 18:09:17 +0800 | [diff] [blame] | 411 | unsigned long flags; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 412 | |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 413 | spin_lock_irqsave(&mdma_lock, flags); |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 414 | |
Mike Frysinger | 41245ac | 2009-02-04 16:49:45 +0800 | [diff] [blame] | 415 | /* Force a sync in case a previous config reset on this channel |
| 416 | * occurred. This is needed so subsequent writes to DMA registers |
| 417 | * are not spuriously lost/corrupted. Do it under irq lock and |
| 418 | * without the anomaly version (because we are atomic already). |
| 419 | */ |
| 420 | __builtin_bfin_ssync(); |
| 421 | |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 422 | if (bfin_read_MDMA_S_CONFIG()) |
| 423 | while (!(bfin_read_MDMA_D_IRQ_STATUS() & DMA_DONE)) |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 424 | continue; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 425 | |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 426 | if (conf & DMA2D) { |
| 427 | /* For larger bit sizes, we've already divided down cnt so it |
| 428 | * is no longer a multiple of 64k. So we have to break down |
| 429 | * the limit here so it is a multiple of the incoming size. |
| 430 | * There is no limitation here in terms of total size other |
| 431 | * than the hardware though as the bits lost in the shift are |
| 432 | * made up by MODIFY (== we can hit the whole address space). |
| 433 | * X: (2^(16 - 0)) * 1 == (2^(16 - 1)) * 2 == (2^(16 - 2)) * 4 |
| 434 | */ |
| 435 | u32 shift = abs(dmod) >> 1; |
| 436 | size_t ycnt = cnt >> (16 - shift); |
| 437 | cnt = 1 << (16 - shift); |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 438 | bfin_write_MDMA_D_Y_COUNT(ycnt); |
| 439 | bfin_write_MDMA_S_Y_COUNT(ycnt); |
| 440 | bfin_write_MDMA_D_Y_MODIFY(dmod); |
| 441 | bfin_write_MDMA_S_Y_MODIFY(smod); |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 442 | } |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 443 | |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 444 | bfin_write_MDMA_D_START_ADDR(daddr); |
| 445 | bfin_write_MDMA_D_X_COUNT(cnt); |
| 446 | bfin_write_MDMA_D_X_MODIFY(dmod); |
| 447 | bfin_write_MDMA_D_IRQ_STATUS(DMA_DONE | DMA_ERR); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 448 | |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 449 | bfin_write_MDMA_S_START_ADDR(saddr); |
| 450 | bfin_write_MDMA_S_X_COUNT(cnt); |
| 451 | bfin_write_MDMA_S_X_MODIFY(smod); |
| 452 | bfin_write_MDMA_S_IRQ_STATUS(DMA_DONE | DMA_ERR); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 453 | |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 454 | bfin_write_MDMA_S_CONFIG(DMAEN | conf); |
| 455 | if (conf & DMA2D) |
| 456 | bfin_write_MDMA_D_CONFIG(WNR | DI_EN_Y | DMAEN | conf); |
| 457 | else |
| 458 | bfin_write_MDMA_D_CONFIG(WNR | DI_EN_X | DMAEN | conf); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 459 | |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 460 | spin_unlock_irqrestore(&mdma_lock, flags); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 461 | |
Michael Hennerich | 1a7d91d | 2007-10-10 17:42:55 +0800 | [diff] [blame] | 462 | SSYNC(); |
| 463 | |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 464 | while (!(bfin_read_MDMA_D_IRQ_STATUS() & DMA_DONE)) |
| 465 | if (bfin_read_MDMA_S_CONFIG()) |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 466 | continue; |
| 467 | else |
| 468 | return; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 469 | |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 470 | bfin_write_MDMA_D_IRQ_STATUS(DMA_DONE | DMA_ERR); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 471 | |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 472 | bfin_write_MDMA_S_CONFIG(0); |
| 473 | bfin_write_MDMA_D_CONFIG(0); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 474 | } |
Aubrey Li | 5f9a3e8 | 2007-05-21 18:09:28 +0800 | [diff] [blame] | 475 | |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 476 | /** |
| 477 | * _dma_memcpy - translate C memcpy settings into MDMA settings |
| 478 | * |
| 479 | * Handle all the high level steps before we touch the MDMA registers. So |
Mike Frysinger | 7ad883a | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 480 | * handle direction, tweaking of sizes, and formatting of addresses. |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 481 | */ |
| 482 | static void *_dma_memcpy(void *pdst, const void *psrc, size_t size) |
Aubrey Li | 5f9a3e8 | 2007-05-21 18:09:28 +0800 | [diff] [blame] | 483 | { |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 484 | u32 conf, shift; |
| 485 | s16 mod; |
| 486 | unsigned long dst = (unsigned long)pdst; |
| 487 | unsigned long src = (unsigned long)psrc; |
Aubrey Li | 5f9a3e8 | 2007-05-21 18:09:28 +0800 | [diff] [blame] | 488 | |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 489 | if (size == 0) |
| 490 | return NULL; |
| 491 | |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 492 | if (dst % 4 == 0 && src % 4 == 0 && size % 4 == 0) { |
| 493 | conf = WDSIZE_32; |
| 494 | shift = 2; |
| 495 | } else if (dst % 2 == 0 && src % 2 == 0 && size % 2 == 0) { |
| 496 | conf = WDSIZE_16; |
| 497 | shift = 1; |
| 498 | } else { |
| 499 | conf = WDSIZE_8; |
| 500 | shift = 0; |
| 501 | } |
| 502 | |
| 503 | /* If the two memory regions have a chance of overlapping, make |
| 504 | * sure the memcpy still works as expected. Do this by having the |
| 505 | * copy run backwards instead. |
| 506 | */ |
| 507 | mod = 1 << shift; |
| 508 | if (src < dst) { |
| 509 | mod *= -1; |
| 510 | dst += size + mod; |
| 511 | src += size + mod; |
| 512 | } |
| 513 | size >>= shift; |
| 514 | |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 515 | #ifndef DMA_MMR_SIZE_32 |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 516 | if (size > 0x10000) |
| 517 | conf |= DMA2D; |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 518 | #endif |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 519 | |
| 520 | __dma_memcpy(dst, mod, src, mod, size, conf); |
| 521 | |
| 522 | return pdst; |
| 523 | } |
| 524 | |
| 525 | /** |
| 526 | * dma_memcpy - DMA memcpy under mutex lock |
| 527 | * |
| 528 | * Do not check arguments before starting the DMA memcpy. Break the transfer |
| 529 | * up into two pieces. The first transfer is in multiples of 64k and the |
| 530 | * second transfer is the piece smaller than 64k. |
| 531 | */ |
Mike Frysinger | 7ad883a | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 532 | void *dma_memcpy(void *pdst, const void *psrc, size_t size) |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 533 | { |
Mike Frysinger | 7ad883a | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 534 | unsigned long dst = (unsigned long)pdst; |
| 535 | unsigned long src = (unsigned long)psrc; |
Mike Frysinger | 7ad883a | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 536 | |
Jie Zhang | 67834fa | 2009-06-10 06:26:26 +0000 | [diff] [blame] | 537 | if (bfin_addr_dcacheable(src)) |
Mike Frysinger | 7ad883a | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 538 | blackfin_dcache_flush_range(src, src + size); |
| 539 | |
Jie Zhang | 67834fa | 2009-06-10 06:26:26 +0000 | [diff] [blame] | 540 | if (bfin_addr_dcacheable(dst)) |
Mike Frysinger | 7ad883a | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 541 | blackfin_dcache_invalidate_range(dst, dst + size); |
| 542 | |
Michael Hennerich | d1401e1 | 2010-06-16 09:12:10 +0000 | [diff] [blame] | 543 | return dma_memcpy_nocache(pdst, psrc, size); |
| 544 | } |
| 545 | EXPORT_SYMBOL(dma_memcpy); |
| 546 | |
| 547 | /** |
| 548 | * dma_memcpy_nocache - DMA memcpy under mutex lock |
| 549 | * - No cache flush/invalidate |
| 550 | * |
| 551 | * Do not check arguments before starting the DMA memcpy. Break the transfer |
| 552 | * up into two pieces. The first transfer is in multiples of 64k and the |
| 553 | * second transfer is the piece smaller than 64k. |
| 554 | */ |
| 555 | void *dma_memcpy_nocache(void *pdst, const void *psrc, size_t size) |
| 556 | { |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 557 | #ifdef DMA_MMR_SIZE_32 |
| 558 | _dma_memcpy(pdst, psrc, size); |
| 559 | #else |
Michael Hennerich | d1401e1 | 2010-06-16 09:12:10 +0000 | [diff] [blame] | 560 | size_t bulk, rest; |
| 561 | |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 562 | bulk = size & ~0xffff; |
Aubrey Li | 5f9a3e8 | 2007-05-21 18:09:28 +0800 | [diff] [blame] | 563 | rest = size - bulk; |
| 564 | if (bulk) |
Mike Frysinger | 7ad883a | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 565 | _dma_memcpy(pdst, psrc, bulk); |
| 566 | _dma_memcpy(pdst + bulk, psrc + bulk, rest); |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 567 | #endif |
Mike Frysinger | 7ad883a | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 568 | return pdst; |
Aubrey Li | 5f9a3e8 | 2007-05-21 18:09:28 +0800 | [diff] [blame] | 569 | } |
Michael Hennerich | d1401e1 | 2010-06-16 09:12:10 +0000 | [diff] [blame] | 570 | EXPORT_SYMBOL(dma_memcpy_nocache); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 571 | |
Mike Frysinger | 49946e7 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 572 | /** |
| 573 | * safe_dma_memcpy - DMA memcpy w/argument checking |
| 574 | * |
| 575 | * Verify arguments are safe before heading to dma_memcpy(). |
| 576 | */ |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 577 | void *safe_dma_memcpy(void *dst, const void *src, size_t size) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 578 | { |
Mike Frysinger | 49946e7 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 579 | if (!access_ok(VERIFY_WRITE, dst, size)) |
| 580 | return NULL; |
| 581 | if (!access_ok(VERIFY_READ, src, size)) |
| 582 | return NULL; |
| 583 | return dma_memcpy(dst, src, size); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 584 | } |
| 585 | EXPORT_SYMBOL(safe_dma_memcpy); |
Michael Hennerich | 23ee968 | 2007-05-21 18:09:17 +0800 | [diff] [blame] | 586 | |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 587 | static void _dma_out(unsigned long addr, unsigned long buf, unsigned DMA_MMR_SIZE_TYPE len, |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 588 | u16 size, u16 dma_size) |
Michael Hennerich | 23ee968 | 2007-05-21 18:09:17 +0800 | [diff] [blame] | 589 | { |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 590 | blackfin_dcache_flush_range(buf, buf + len * size); |
| 591 | __dma_memcpy(addr, 0, buf, size, len, dma_size); |
Michael Hennerich | 23ee968 | 2007-05-21 18:09:17 +0800 | [diff] [blame] | 592 | } |
Michael Hennerich | 23ee968 | 2007-05-21 18:09:17 +0800 | [diff] [blame] | 593 | |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 594 | static void _dma_in(unsigned long addr, unsigned long buf, unsigned DMA_MMR_SIZE_TYPE len, |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 595 | u16 size, u16 dma_size) |
Michael Hennerich | 23ee968 | 2007-05-21 18:09:17 +0800 | [diff] [blame] | 596 | { |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 597 | blackfin_dcache_invalidate_range(buf, buf + len * size); |
| 598 | __dma_memcpy(buf, size, addr, 0, len, dma_size); |
Michael Hennerich | 23ee968 | 2007-05-21 18:09:17 +0800 | [diff] [blame] | 599 | } |
Michael Hennerich | 23ee968 | 2007-05-21 18:09:17 +0800 | [diff] [blame] | 600 | |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 601 | #define MAKE_DMA_IO(io, bwl, isize, dmasize, cnst) \ |
Bob Liu | b5affb0 | 2012-05-16 17:37:24 +0800 | [diff] [blame] | 602 | void dma_##io##s##bwl(unsigned long addr, cnst void *buf, unsigned DMA_MMR_SIZE_TYPE len) \ |
Mike Frysinger | dd3dd38 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 603 | { \ |
| 604 | _dma_##io(addr, (unsigned long)buf, len, isize, WDSIZE_##dmasize); \ |
| 605 | } \ |
| 606 | EXPORT_SYMBOL(dma_##io##s##bwl) |
| 607 | MAKE_DMA_IO(out, b, 1, 8, const); |
| 608 | MAKE_DMA_IO(in, b, 1, 8, ); |
| 609 | MAKE_DMA_IO(out, w, 2, 16, const); |
| 610 | MAKE_DMA_IO(in, w, 2, 16, ); |
| 611 | MAKE_DMA_IO(out, l, 4, 32, const); |
| 612 | MAKE_DMA_IO(in, l, 4, 32, ); |