blob: b612324fb8daa749e95e3d90ce15df05036b619c [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001/*
Bob Liu5ddebe52012-03-19 13:50:27 +08002 * bfin_dma.c - Blackfin DMA implementation
Bryan Wu1394f032007-05-06 14:50:22 -07003 *
Mike Frysinger9c417a42009-01-07 23:14:39 +08004 * Copyright 2004-2008 Analog Devices Inc.
Robin Getz96f10502009-09-24 14:11:24 +00005 *
Mike Frysingerdd3dd382009-01-07 23:14:39 +08006 * Licensed under the GPL-2 or later.
Bryan Wu1394f032007-05-06 14:50:22 -07007 */
8
9#include <linux/errno.h>
Mike Frysingerdd3dd382009-01-07 23:14:39 +080010#include <linux/interrupt.h>
11#include <linux/kernel.h>
Bryan Wu1394f032007-05-06 14:50:22 -070012#include <linux/module.h>
Mike Frysingerdd3dd382009-01-07 23:14:39 +080013#include <linux/param.h>
Graf Yangd642a8a2009-01-07 23:14:39 +080014#include <linux/proc_fs.h>
Bryan Wu1394f032007-05-06 14:50:22 -070015#include <linux/sched.h>
Graf Yangd642a8a2009-01-07 23:14:39 +080016#include <linux/seq_file.h>
Mike Frysingerdd3dd382009-01-07 23:14:39 +080017#include <linux/spinlock.h>
Bryan Wu1394f032007-05-06 14:50:22 -070018
Roy Huang24a07a12007-07-12 22:41:45 +080019#include <asm/blackfin.h>
Bryan Wu1394f032007-05-06 14:50:22 -070020#include <asm/cacheflush.h>
Mike Frysingerdd3dd382009-01-07 23:14:39 +080021#include <asm/dma.h>
22#include <asm/uaccess.h>
Robin Getz837ec2d2009-07-07 20:17:09 +000023#include <asm/early_printk.h>
Bryan Wu1394f032007-05-06 14:50:22 -070024
Robin Getz76068c32009-04-23 20:56:42 +000025/*
26 * To make sure we work around 05000119 - we always check DMA_DONE bit,
27 * never the DMA_RUN bit
28 */
29
Mike Frysinger9c417a42009-01-07 23:14:39 +080030struct dma_channel dma_ch[MAX_DMA_CHANNELS];
31EXPORT_SYMBOL(dma_ch);
Bryan Wu1394f032007-05-06 14:50:22 -070032
Mike Frysingera161bb02007-05-21 18:09:14 +080033static int __init blackfin_dma_init(void)
Bryan Wu1394f032007-05-06 14:50:22 -070034{
35 int i;
36
37 printk(KERN_INFO "Blackfin DMA Controller\n");
38
Steven Miaof9691bb2011-05-05 14:14:48 +080039
40#if ANOMALY_05000480
41 bfin_write_DMAC_TC_PER(0x0111);
42#endif
43
Mike Frysinger211daf92009-01-07 23:14:39 +080044 for (i = 0; i < MAX_DMA_CHANNELS; i++) {
Mike Frysingerd2e015d2009-10-09 22:18:12 +000045 atomic_set(&dma_ch[i].chan_status, 0);
Bernd Schmidt77955662008-04-24 05:31:18 +080046 dma_ch[i].regs = dma_io_base_addr[i];
Bryan Wu1394f032007-05-06 14:50:22 -070047 }
Bob Liub5affb02012-05-16 17:37:24 +080048#ifdef CH_MEM_STREAM3_SRC
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 Hennerich23ee9682007-05-21 18:09:17 +080053 /* Mark MEMDMA Channel 0 as requested since we're using it internally */
Graf Yangd642a8a2009-01-07 23:14:39 +080054 request_dma(CH_MEM_STREAM0_DEST, "Blackfin dma_memcpy");
55 request_dma(CH_MEM_STREAM0_SRC, "Blackfin dma_memcpy");
Bob Liub5affb02012-05-16 17:37:24 +080056#endif
Michael Hennericha924db72007-08-03 17:43:29 +080057
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 Yangd642a8a2009-01-07 23:14:39 +080062
63 return 0;
64}
65arch_initcall(blackfin_dma_init);
66
67#ifdef CONFIG_PROC_FS
Graf Yangd642a8a2009-01-07 23:14:39 +080068static int proc_dma_show(struct seq_file *m, void *v)
69{
70 int i;
71
Mike Frysingerdd3dd382009-01-07 23:14:39 +080072 for (i = 0; i < MAX_DMA_CHANNELS; ++i)
Mike Frysingerd2e015d2009-10-09 22:18:12 +000073 if (dma_channel_active(i))
Graf Yangd642a8a2009-01-07 23:14:39 +080074 seq_printf(m, "%2d: %s\n", i, dma_ch[i].device_id);
75
Bryan Wu1394f032007-05-06 14:50:22 -070076 return 0;
77}
78
Graf Yangd642a8a2009-01-07 23:14:39 +080079static int proc_dma_open(struct inode *inode, struct file *file)
80{
81 return single_open(file, proc_dma_show, NULL);
82}
83
84static 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
91static int __init proc_dma_init(void)
92{
93 return proc_create("dma", 0, NULL, &proc_dma_operations) != NULL;
94}
95late_initcall(proc_dma_init);
96#endif
Bryan Wu1394f032007-05-06 14:50:22 -070097
steven miao55835172010-10-22 08:48:41 +000098static void set_dma_peripheral_map(unsigned int channel, const char *device_id)
99{
100#ifdef CONFIG_BF54x
101 unsigned int per_map;
102
103 switch (channel) {
104 case CH_UART2_RX: per_map = 0xC << 12; break;
105 case CH_UART2_TX: per_map = 0xD << 12; break;
106 case CH_UART3_RX: per_map = 0xE << 12; break;
107 case CH_UART3_TX: per_map = 0xF << 12; break;
108 default: return;
109 }
110
111 if (strncmp(device_id, "BFIN_UART", 9) == 0)
112 dma_ch[channel].regs->peripheral_map = per_map;
113#endif
114}
115
Mike Frysinger9c417a42009-01-07 23:14:39 +0800116/**
117 * request_dma - request a DMA channel
118 *
119 * Request the specific DMA channel from the system if it's available.
120 */
Michael McTernan99532fd2009-01-07 23:14:38 +0800121int request_dma(unsigned int channel, const char *device_id)
Bryan Wu1394f032007-05-06 14:50:22 -0700122{
Frans Pop2bc4aff2010-02-06 18:47:18 +0100123 pr_debug("request_dma() : BEGIN\n");
Michael Hennerich5ce998c2008-05-17 15:57:01 +0800124
Graf Yangd642a8a2009-01-07 23:14:39 +0800125 if (device_id == NULL)
126 printk(KERN_WARNING "request_dma(%u): no device_id given\n", channel);
127
Michael Hennerich5ce998c2008-05-17 15:57:01 +0800128#if defined(CONFIG_BF561) && ANOMALY_05000182
129 if (channel >= CH_IMEM_STREAM0_DEST && channel <= CH_IMEM_STREAM1_DEST) {
130 if (get_cclk() > 500000000) {
131 printk(KERN_WARNING
132 "Request IMDMA failed due to ANOMALY 05000182\n");
133 return -EFAULT;
134 }
135 }
136#endif
137
Mike Frysingerd2e015d2009-10-09 22:18:12 +0000138 if (atomic_cmpxchg(&dma_ch[channel].chan_status, 0, 1)) {
Frans Pop2bc4aff2010-02-06 18:47:18 +0100139 pr_debug("DMA CHANNEL IN USE\n");
Bryan Wu1394f032007-05-06 14:50:22 -0700140 return -EBUSY;
Bryan Wu1394f032007-05-06 14:50:22 -0700141 }
142
steven miao55835172010-10-22 08:48:41 +0000143 set_dma_peripheral_map(channel, device_id);
Bryan Wu1394f032007-05-06 14:50:22 -0700144 dma_ch[channel].device_id = device_id;
Mike Frysinger9b011402009-01-07 23:14:38 +0800145 dma_ch[channel].irq = 0;
Bryan Wu1394f032007-05-06 14:50:22 -0700146
147 /* This is to be enabled by putting a restriction -
148 * you have to request DMA, before doing any operations on
149 * descriptor/channel
150 */
Frans Pop2bc4aff2010-02-06 18:47:18 +0100151 pr_debug("request_dma() : END\n");
Mike Frysinger596b5652009-01-07 23:14:39 +0800152 return 0;
Bryan Wu1394f032007-05-06 14:50:22 -0700153}
154EXPORT_SYMBOL(request_dma);
155
Mike Frysinger68532bd2009-01-07 23:14:38 +0800156int set_dma_callback(unsigned int channel, irq_handler_t callback, void *data)
Bryan Wu1394f032007-05-06 14:50:22 -0700157{
Mike Frysingere34132f2009-11-24 18:36:36 +0000158 int ret;
159 unsigned int irq;
160
161 BUG_ON(channel >= MAX_DMA_CHANNELS || !callback ||
Mike Frysingerd2e015d2009-10-09 22:18:12 +0000162 !atomic_read(&dma_ch[channel].chan_status));
Bryan Wu1394f032007-05-06 14:50:22 -0700163
Mike Frysingere34132f2009-11-24 18:36:36 +0000164 irq = channel2irq(channel);
165 ret = request_irq(irq, callback, 0, dma_ch[channel].device_id, data);
166 if (ret)
167 return ret;
Bryan Wu1394f032007-05-06 14:50:22 -0700168
Mike Frysingere34132f2009-11-24 18:36:36 +0000169 dma_ch[channel].irq = irq;
170 dma_ch[channel].data = data;
Mike Frysinger8f1cc232009-01-07 23:14:39 +0800171
Bryan Wu1394f032007-05-06 14:50:22 -0700172 return 0;
173}
174EXPORT_SYMBOL(set_dma_callback);
175
Mike Frysinger9c417a42009-01-07 23:14:39 +0800176/**
177 * clear_dma_buffer - clear DMA fifos for specified channel
178 *
179 * Set the Buffer Clear bit in the Configuration register of specific DMA
180 * channel. This will stop the descriptor based DMA operation.
181 */
182static void clear_dma_buffer(unsigned int channel)
183{
184 dma_ch[channel].regs->cfg |= RESTART;
185 SSYNC();
186 dma_ch[channel].regs->cfg &= ~RESTART;
187}
188
Bryan Wu1394f032007-05-06 14:50:22 -0700189void free_dma(unsigned int channel)
190{
Frans Pop2bc4aff2010-02-06 18:47:18 +0100191 pr_debug("freedma() : BEGIN\n");
Roel Kluinac860752009-08-02 14:26:48 +0200192 BUG_ON(channel >= MAX_DMA_CHANNELS ||
Mike Frysingerd2e015d2009-10-09 22:18:12 +0000193 !atomic_read(&dma_ch[channel].chan_status));
Bryan Wu1394f032007-05-06 14:50:22 -0700194
195 /* Halt the DMA */
196 disable_dma(channel);
197 clear_dma_buffer(channel);
198
Mike Frysinger9b011402009-01-07 23:14:38 +0800199 if (dma_ch[channel].irq)
Michael Hennericha2ba8b12008-10-28 18:19:29 +0800200 free_irq(dma_ch[channel].irq, dma_ch[channel].data);
Bryan Wu1394f032007-05-06 14:50:22 -0700201
202 /* Clear the DMA Variable in the Channel */
Mike Frysingerd2e015d2009-10-09 22:18:12 +0000203 atomic_set(&dma_ch[channel].chan_status, 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700204
Frans Pop2bc4aff2010-02-06 18:47:18 +0100205 pr_debug("freedma() : END\n");
Bryan Wu1394f032007-05-06 14:50:22 -0700206}
207EXPORT_SYMBOL(free_dma);
208
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800209#ifdef CONFIG_PM
Mike Frysingerc9e00202009-01-07 23:14:39 +0800210# ifndef MAX_DMA_SUSPEND_CHANNELS
211# define MAX_DMA_SUSPEND_CHANNELS MAX_DMA_CHANNELS
212# endif
Bob Liub5affb02012-05-16 17:37:24 +0800213# ifndef CONFIG_BF60x
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800214int blackfin_dma_suspend(void)
215{
216 int i;
217
Mike Frysingerd2e015d2009-10-09 22:18:12 +0000218 for (i = 0; i < MAX_DMA_CHANNELS; ++i) {
219 if (dma_ch[i].regs->cfg & DMAEN) {
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800220 printk(KERN_ERR "DMA Channel %d failed to suspend\n", i);
221 return -EBUSY;
222 }
Mike Frysingerd2e015d2009-10-09 22:18:12 +0000223 if (i < MAX_DMA_SUSPEND_CHANNELS)
224 dma_ch[i].saved_peripheral_map = dma_ch[i].regs->peripheral_map;
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800225 }
226
Bob Liu5ddebe52012-03-19 13:50:27 +0800227#if ANOMALY_05000480
228 bfin_write_DMAC_TC_PER(0x0);
229#endif
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800230 return 0;
231}
232
233void blackfin_dma_resume(void)
234{
235 int i;
Michael Hennerich865bddf2009-10-20 13:38:04 +0000236
237 for (i = 0; i < MAX_DMA_CHANNELS; ++i) {
238 dma_ch[i].regs->cfg = 0;
Michael Hennerich865bddf2009-10-20 13:38:04 +0000239 if (i < MAX_DMA_SUSPEND_CHANNELS)
240 dma_ch[i].regs->peripheral_map = dma_ch[i].saved_peripheral_map;
241 }
Bob Liu5ddebe52012-03-19 13:50:27 +0800242#if ANOMALY_05000480
243 bfin_write_DMAC_TC_PER(0x0111);
244#endif
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800245}
Bob Liub5affb02012-05-16 17:37:24 +0800246# else
247int blackfin_dma_suspend(void)
248{
249 return 0;
250}
251
252void blackfin_dma_resume(void)
253{
254}
255#endif
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800256#endif
257
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800258/**
259 * blackfin_dma_early_init - minimal DMA init
260 *
261 * Setup a few DMA registers so we can safely do DMA transfers early on in
262 * the kernel booting process. Really this just means using dma_memcpy().
263 */
264void __init blackfin_dma_early_init(void)
Bryan Wu1394f032007-05-06 14:50:22 -0700265{
Robin Getz837ec2d2009-07-07 20:17:09 +0000266 early_shadow_stamp();
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800267 bfin_write_MDMA_S0_CONFIG(0);
Robin Getzfecbd732009-04-23 20:49:43 +0000268 bfin_write_MDMA_S1_CONFIG(0);
269}
270
271void __init early_dma_memcpy(void *pdst, const void *psrc, size_t size)
272{
273 unsigned long dst = (unsigned long)pdst;
274 unsigned long src = (unsigned long)psrc;
275 struct dma_register *dst_ch, *src_ch;
276
Robin Getz837ec2d2009-07-07 20:17:09 +0000277 early_shadow_stamp();
278
Robin Getzfecbd732009-04-23 20:49:43 +0000279 /* We assume that everything is 4 byte aligned, so include
280 * a basic sanity check
281 */
282 BUG_ON(dst % 4);
283 BUG_ON(src % 4);
284 BUG_ON(size % 4);
285
Mike Frysinger532f07c2009-06-29 22:45:50 +0000286 src_ch = 0;
287 /* Find an avalible memDMA channel */
288 while (1) {
289 if (src_ch == (struct dma_register *)MDMA_S0_NEXT_DESC_PTR) {
290 dst_ch = (struct dma_register *)MDMA_D1_NEXT_DESC_PTR;
291 src_ch = (struct dma_register *)MDMA_S1_NEXT_DESC_PTR;
292 } else {
293 dst_ch = (struct dma_register *)MDMA_D0_NEXT_DESC_PTR;
294 src_ch = (struct dma_register *)MDMA_S0_NEXT_DESC_PTR;
295 }
296
Bob Liub5affb02012-05-16 17:37:24 +0800297 if (!DMA_MMR_READ(&src_ch->cfg))
Mike Frysinger532f07c2009-06-29 22:45:50 +0000298 break;
Bob Liub5affb02012-05-16 17:37:24 +0800299 else if (DMA_MMR_READ(&dst_ch->irq_status) & DMA_DONE) {
300 DMA_MMR_WRITE(&src_ch->cfg, 0);
Mike Frysinger532f07c2009-06-29 22:45:50 +0000301 break;
302 }
303 }
304
Robin Getzfecbd732009-04-23 20:49:43 +0000305 /* Force a sync in case a previous config reset on this channel
306 * occurred. This is needed so subsequent writes to DMA registers
307 * are not spuriously lost/corrupted.
308 */
309 __builtin_bfin_ssync();
310
Robin Getzfecbd732009-04-23 20:49:43 +0000311 /* Destination */
312 bfin_write32(&dst_ch->start_addr, dst);
Bob Liub5affb02012-05-16 17:37:24 +0800313 DMA_MMR_WRITE(&dst_ch->x_count, size >> 2);
314 DMA_MMR_WRITE(&dst_ch->x_modify, 1 << 2);
315 DMA_MMR_WRITE(&dst_ch->irq_status, DMA_DONE | DMA_ERR);
Robin Getzfecbd732009-04-23 20:49:43 +0000316
317 /* Source */
318 bfin_write32(&src_ch->start_addr, src);
Bob Liub5affb02012-05-16 17:37:24 +0800319 DMA_MMR_WRITE(&src_ch->x_count, size >> 2);
320 DMA_MMR_WRITE(&src_ch->x_modify, 1 << 2);
321 DMA_MMR_WRITE(&src_ch->irq_status, DMA_DONE | DMA_ERR);
Robin Getzfecbd732009-04-23 20:49:43 +0000322
323 /* Enable */
Bob Liub5affb02012-05-16 17:37:24 +0800324 DMA_MMR_WRITE(&src_ch->cfg, DMAEN | WDSIZE_32);
325 DMA_MMR_WRITE(&dst_ch->cfg, WNR | DI_EN_X | DMAEN | WDSIZE_32);
Robin Getzfecbd732009-04-23 20:49:43 +0000326
327 /* Since we are atomic now, don't use the workaround ssync */
328 __builtin_bfin_ssync();
Bob Liub5affb02012-05-16 17:37:24 +0800329
330#ifdef CONFIG_BF60x
331 /* Work around a possible MDMA anomaly. Running 2 MDMA channels to
332 * transfer DDR data to L1 SRAM may corrupt data.
333 * Should be reverted after this issue is root caused.
334 */
335 while (!(DMA_MMR_READ(&dst_ch->irq_status) & DMA_DONE))
336 continue;
337#endif
Robin Getzfecbd732009-04-23 20:49:43 +0000338}
339
340void __init early_dma_memcpy_done(void)
341{
Robin Getz837ec2d2009-07-07 20:17:09 +0000342 early_shadow_stamp();
343
Robin Getzfecbd732009-04-23 20:49:43 +0000344 while ((bfin_read_MDMA_S0_CONFIG() && !(bfin_read_MDMA_D0_IRQ_STATUS() & DMA_DONE)) ||
345 (bfin_read_MDMA_S1_CONFIG() && !(bfin_read_MDMA_D1_IRQ_STATUS() & DMA_DONE)))
346 continue;
347
348 bfin_write_MDMA_D0_IRQ_STATUS(DMA_DONE | DMA_ERR);
349 bfin_write_MDMA_D1_IRQ_STATUS(DMA_DONE | DMA_ERR);
350 /*
351 * Now that DMA is done, we would normally flush cache, but
352 * i/d cache isn't running this early, so we don't bother,
353 * and just clear out the DMA channel for next time
354 */
355 bfin_write_MDMA_S0_CONFIG(0);
356 bfin_write_MDMA_S1_CONFIG(0);
357 bfin_write_MDMA_D0_CONFIG(0);
358 bfin_write_MDMA_D1_CONFIG(0);
359
360 __builtin_bfin_ssync();
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800361}
362
Bob Liub5affb02012-05-16 17:37:24 +0800363#ifdef CH_MEM_STREAM3_SRC
364#define bfin_read_MDMA_S_CONFIG bfin_read_MDMA_S3_CONFIG
365#define bfin_write_MDMA_S_CONFIG bfin_write_MDMA_S3_CONFIG
366#define bfin_write_MDMA_S_START_ADDR bfin_write_MDMA_S3_START_ADDR
367#define bfin_write_MDMA_S_IRQ_STATUS bfin_write_MDMA_S3_IRQ_STATUS
368#define bfin_write_MDMA_S_X_COUNT bfin_write_MDMA_S3_X_COUNT
369#define bfin_write_MDMA_S_X_MODIFY bfin_write_MDMA_S3_X_MODIFY
370#define bfin_write_MDMA_S_Y_COUNT bfin_write_MDMA_S3_Y_COUNT
371#define bfin_write_MDMA_S_Y_MODIFY bfin_write_MDMA_S3_Y_MODIFY
372#define bfin_write_MDMA_D_CONFIG bfin_write_MDMA_D3_CONFIG
373#define bfin_write_MDMA_D_START_ADDR bfin_write_MDMA_D3_START_ADDR
374#define bfin_read_MDMA_D_IRQ_STATUS bfin_read_MDMA_D3_IRQ_STATUS
375#define bfin_write_MDMA_D_IRQ_STATUS bfin_write_MDMA_D3_IRQ_STATUS
376#define bfin_write_MDMA_D_X_COUNT bfin_write_MDMA_D3_X_COUNT
377#define bfin_write_MDMA_D_X_MODIFY bfin_write_MDMA_D3_X_MODIFY
378#define bfin_write_MDMA_D_Y_COUNT bfin_write_MDMA_D3_Y_COUNT
379#define bfin_write_MDMA_D_Y_MODIFY bfin_write_MDMA_D3_Y_MODIFY
380#else
381#define bfin_read_MDMA_S_CONFIG bfin_read_MDMA_S0_CONFIG
382#define bfin_write_MDMA_S_CONFIG bfin_write_MDMA_S0_CONFIG
383#define bfin_write_MDMA_S_START_ADDR bfin_write_MDMA_S0_START_ADDR
384#define bfin_write_MDMA_S_IRQ_STATUS bfin_write_MDMA_S0_IRQ_STATUS
385#define bfin_write_MDMA_S_X_COUNT bfin_write_MDMA_S0_X_COUNT
386#define bfin_write_MDMA_S_X_MODIFY bfin_write_MDMA_S0_X_MODIFY
387#define bfin_write_MDMA_S_Y_COUNT bfin_write_MDMA_S0_Y_COUNT
388#define bfin_write_MDMA_S_Y_MODIFY bfin_write_MDMA_S0_Y_MODIFY
389#define bfin_write_MDMA_D_CONFIG bfin_write_MDMA_D0_CONFIG
390#define bfin_write_MDMA_D_START_ADDR bfin_write_MDMA_D0_START_ADDR
391#define bfin_read_MDMA_D_IRQ_STATUS bfin_read_MDMA_D0_IRQ_STATUS
392#define bfin_write_MDMA_D_IRQ_STATUS bfin_write_MDMA_D0_IRQ_STATUS
393#define bfin_write_MDMA_D_X_COUNT bfin_write_MDMA_D0_X_COUNT
394#define bfin_write_MDMA_D_X_MODIFY bfin_write_MDMA_D0_X_MODIFY
395#define bfin_write_MDMA_D_Y_COUNT bfin_write_MDMA_D0_Y_COUNT
396#define bfin_write_MDMA_D_Y_MODIFY bfin_write_MDMA_D0_Y_MODIFY
397#endif
398
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800399/**
400 * __dma_memcpy - program the MDMA registers
401 *
402 * Actually program MDMA0 and wait for the transfer to finish. Disable IRQs
403 * while programming registers so that everything is fully configured. Wait
404 * for DMA to finish with IRQs enabled. If interrupted, the initial DMA_DONE
405 * check will make sure we don't clobber any existing transfer.
406 */
407static void __dma_memcpy(u32 daddr, s16 dmod, u32 saddr, s16 smod, size_t cnt, u32 conf)
408{
409 static DEFINE_SPINLOCK(mdma_lock);
Michael Hennerich23ee9682007-05-21 18:09:17 +0800410 unsigned long flags;
Bryan Wu1394f032007-05-06 14:50:22 -0700411
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800412 spin_lock_irqsave(&mdma_lock, flags);
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800413
Mike Frysinger41245ac2009-02-04 16:49:45 +0800414 /* Force a sync in case a previous config reset on this channel
415 * occurred. This is needed so subsequent writes to DMA registers
416 * are not spuriously lost/corrupted. Do it under irq lock and
417 * without the anomaly version (because we are atomic already).
418 */
419 __builtin_bfin_ssync();
420
Bob Liub5affb02012-05-16 17:37:24 +0800421 if (bfin_read_MDMA_S_CONFIG())
422 while (!(bfin_read_MDMA_D_IRQ_STATUS() & DMA_DONE))
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800423 continue;
Bryan Wu1394f032007-05-06 14:50:22 -0700424
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800425 if (conf & DMA2D) {
426 /* For larger bit sizes, we've already divided down cnt so it
427 * is no longer a multiple of 64k. So we have to break down
428 * the limit here so it is a multiple of the incoming size.
429 * There is no limitation here in terms of total size other
430 * than the hardware though as the bits lost in the shift are
431 * made up by MODIFY (== we can hit the whole address space).
432 * X: (2^(16 - 0)) * 1 == (2^(16 - 1)) * 2 == (2^(16 - 2)) * 4
433 */
434 u32 shift = abs(dmod) >> 1;
435 size_t ycnt = cnt >> (16 - shift);
436 cnt = 1 << (16 - shift);
Bob Liub5affb02012-05-16 17:37:24 +0800437 bfin_write_MDMA_D_Y_COUNT(ycnt);
438 bfin_write_MDMA_S_Y_COUNT(ycnt);
439 bfin_write_MDMA_D_Y_MODIFY(dmod);
440 bfin_write_MDMA_S_Y_MODIFY(smod);
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800441 }
Bryan Wu1394f032007-05-06 14:50:22 -0700442
Bob Liub5affb02012-05-16 17:37:24 +0800443 bfin_write_MDMA_D_START_ADDR(daddr);
444 bfin_write_MDMA_D_X_COUNT(cnt);
445 bfin_write_MDMA_D_X_MODIFY(dmod);
446 bfin_write_MDMA_D_IRQ_STATUS(DMA_DONE | DMA_ERR);
Bryan Wu1394f032007-05-06 14:50:22 -0700447
Bob Liub5affb02012-05-16 17:37:24 +0800448 bfin_write_MDMA_S_START_ADDR(saddr);
449 bfin_write_MDMA_S_X_COUNT(cnt);
450 bfin_write_MDMA_S_X_MODIFY(smod);
451 bfin_write_MDMA_S_IRQ_STATUS(DMA_DONE | DMA_ERR);
Bryan Wu1394f032007-05-06 14:50:22 -0700452
Bob Liub5affb02012-05-16 17:37:24 +0800453 bfin_write_MDMA_S_CONFIG(DMAEN | conf);
454 if (conf & DMA2D)
455 bfin_write_MDMA_D_CONFIG(WNR | DI_EN_Y | DMAEN | conf);
456 else
457 bfin_write_MDMA_D_CONFIG(WNR | DI_EN_X | DMAEN | conf);
Bryan Wu1394f032007-05-06 14:50:22 -0700458
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800459 spin_unlock_irqrestore(&mdma_lock, flags);
Bryan Wu1394f032007-05-06 14:50:22 -0700460
Michael Hennerich1a7d91d2007-10-10 17:42:55 +0800461 SSYNC();
462
Bob Liub5affb02012-05-16 17:37:24 +0800463 while (!(bfin_read_MDMA_D_IRQ_STATUS() & DMA_DONE))
464 if (bfin_read_MDMA_S_CONFIG())
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800465 continue;
466 else
467 return;
Bryan Wu1394f032007-05-06 14:50:22 -0700468
Bob Liub5affb02012-05-16 17:37:24 +0800469 bfin_write_MDMA_D_IRQ_STATUS(DMA_DONE | DMA_ERR);
Bryan Wu1394f032007-05-06 14:50:22 -0700470
Bob Liub5affb02012-05-16 17:37:24 +0800471 bfin_write_MDMA_S_CONFIG(0);
472 bfin_write_MDMA_D_CONFIG(0);
Bryan Wu1394f032007-05-06 14:50:22 -0700473}
Aubrey Li5f9a3e82007-05-21 18:09:28 +0800474
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800475/**
476 * _dma_memcpy - translate C memcpy settings into MDMA settings
477 *
478 * Handle all the high level steps before we touch the MDMA registers. So
Mike Frysinger7ad883a2009-01-07 23:14:39 +0800479 * handle direction, tweaking of sizes, and formatting of addresses.
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800480 */
481static void *_dma_memcpy(void *pdst, const void *psrc, size_t size)
Aubrey Li5f9a3e82007-05-21 18:09:28 +0800482{
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800483 u32 conf, shift;
484 s16 mod;
485 unsigned long dst = (unsigned long)pdst;
486 unsigned long src = (unsigned long)psrc;
Aubrey Li5f9a3e82007-05-21 18:09:28 +0800487
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800488 if (size == 0)
489 return NULL;
490
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800491 if (dst % 4 == 0 && src % 4 == 0 && size % 4 == 0) {
492 conf = WDSIZE_32;
493 shift = 2;
494 } else if (dst % 2 == 0 && src % 2 == 0 && size % 2 == 0) {
495 conf = WDSIZE_16;
496 shift = 1;
497 } else {
498 conf = WDSIZE_8;
499 shift = 0;
500 }
501
502 /* If the two memory regions have a chance of overlapping, make
503 * sure the memcpy still works as expected. Do this by having the
504 * copy run backwards instead.
505 */
506 mod = 1 << shift;
507 if (src < dst) {
508 mod *= -1;
509 dst += size + mod;
510 src += size + mod;
511 }
512 size >>= shift;
513
Bob Liub5affb02012-05-16 17:37:24 +0800514#ifndef DMA_MMR_SIZE_32
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800515 if (size > 0x10000)
516 conf |= DMA2D;
Bob Liub5affb02012-05-16 17:37:24 +0800517#endif
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800518
519 __dma_memcpy(dst, mod, src, mod, size, conf);
520
521 return pdst;
522}
523
524/**
525 * dma_memcpy - DMA memcpy under mutex lock
526 *
527 * Do not check arguments before starting the DMA memcpy. Break the transfer
528 * up into two pieces. The first transfer is in multiples of 64k and the
529 * second transfer is the piece smaller than 64k.
530 */
Mike Frysinger7ad883a2009-01-07 23:14:39 +0800531void *dma_memcpy(void *pdst, const void *psrc, size_t size)
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800532{
Mike Frysinger7ad883a2009-01-07 23:14:39 +0800533 unsigned long dst = (unsigned long)pdst;
534 unsigned long src = (unsigned long)psrc;
Mike Frysinger7ad883a2009-01-07 23:14:39 +0800535
Jie Zhang67834fa2009-06-10 06:26:26 +0000536 if (bfin_addr_dcacheable(src))
Mike Frysinger7ad883a2009-01-07 23:14:39 +0800537 blackfin_dcache_flush_range(src, src + size);
538
Jie Zhang67834fa2009-06-10 06:26:26 +0000539 if (bfin_addr_dcacheable(dst))
Mike Frysinger7ad883a2009-01-07 23:14:39 +0800540 blackfin_dcache_invalidate_range(dst, dst + size);
541
Michael Hennerichd1401e12010-06-16 09:12:10 +0000542 return dma_memcpy_nocache(pdst, psrc, size);
543}
544EXPORT_SYMBOL(dma_memcpy);
545
546/**
547 * dma_memcpy_nocache - DMA memcpy under mutex lock
548 * - No cache flush/invalidate
549 *
550 * Do not check arguments before starting the DMA memcpy. Break the transfer
551 * up into two pieces. The first transfer is in multiples of 64k and the
552 * second transfer is the piece smaller than 64k.
553 */
554void *dma_memcpy_nocache(void *pdst, const void *psrc, size_t size)
555{
Bob Liub5affb02012-05-16 17:37:24 +0800556#ifdef DMA_MMR_SIZE_32
557 _dma_memcpy(pdst, psrc, size);
558#else
Michael Hennerichd1401e12010-06-16 09:12:10 +0000559 size_t bulk, rest;
560
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800561 bulk = size & ~0xffff;
Aubrey Li5f9a3e82007-05-21 18:09:28 +0800562 rest = size - bulk;
563 if (bulk)
Mike Frysinger7ad883a2009-01-07 23:14:39 +0800564 _dma_memcpy(pdst, psrc, bulk);
565 _dma_memcpy(pdst + bulk, psrc + bulk, rest);
Bob Liub5affb02012-05-16 17:37:24 +0800566#endif
Mike Frysinger7ad883a2009-01-07 23:14:39 +0800567 return pdst;
Aubrey Li5f9a3e82007-05-21 18:09:28 +0800568}
Michael Hennerichd1401e12010-06-16 09:12:10 +0000569EXPORT_SYMBOL(dma_memcpy_nocache);
Bryan Wu1394f032007-05-06 14:50:22 -0700570
Mike Frysinger49946e72009-01-07 23:14:38 +0800571/**
572 * safe_dma_memcpy - DMA memcpy w/argument checking
573 *
574 * Verify arguments are safe before heading to dma_memcpy().
575 */
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800576void *safe_dma_memcpy(void *dst, const void *src, size_t size)
Bryan Wu1394f032007-05-06 14:50:22 -0700577{
Mike Frysinger49946e72009-01-07 23:14:38 +0800578 if (!access_ok(VERIFY_WRITE, dst, size))
579 return NULL;
580 if (!access_ok(VERIFY_READ, src, size))
581 return NULL;
582 return dma_memcpy(dst, src, size);
Bryan Wu1394f032007-05-06 14:50:22 -0700583}
584EXPORT_SYMBOL(safe_dma_memcpy);
Michael Hennerich23ee9682007-05-21 18:09:17 +0800585
Bob Liub5affb02012-05-16 17:37:24 +0800586static void _dma_out(unsigned long addr, unsigned long buf, unsigned DMA_MMR_SIZE_TYPE len,
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800587 u16 size, u16 dma_size)
Michael Hennerich23ee9682007-05-21 18:09:17 +0800588{
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800589 blackfin_dcache_flush_range(buf, buf + len * size);
590 __dma_memcpy(addr, 0, buf, size, len, dma_size);
Michael Hennerich23ee9682007-05-21 18:09:17 +0800591}
Michael Hennerich23ee9682007-05-21 18:09:17 +0800592
Bob Liub5affb02012-05-16 17:37:24 +0800593static void _dma_in(unsigned long addr, unsigned long buf, unsigned DMA_MMR_SIZE_TYPE len,
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800594 u16 size, u16 dma_size)
Michael Hennerich23ee9682007-05-21 18:09:17 +0800595{
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800596 blackfin_dcache_invalidate_range(buf, buf + len * size);
597 __dma_memcpy(buf, size, addr, 0, len, dma_size);
Michael Hennerich23ee9682007-05-21 18:09:17 +0800598}
Michael Hennerich23ee9682007-05-21 18:09:17 +0800599
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800600#define MAKE_DMA_IO(io, bwl, isize, dmasize, cnst) \
Bob Liub5affb02012-05-16 17:37:24 +0800601void dma_##io##s##bwl(unsigned long addr, cnst void *buf, unsigned DMA_MMR_SIZE_TYPE len) \
Mike Frysingerdd3dd382009-01-07 23:14:39 +0800602{ \
603 _dma_##io(addr, (unsigned long)buf, len, isize, WDSIZE_##dmasize); \
604} \
605EXPORT_SYMBOL(dma_##io##s##bwl)
606MAKE_DMA_IO(out, b, 1, 8, const);
607MAKE_DMA_IO(in, b, 1, 8, );
608MAKE_DMA_IO(out, w, 2, 16, const);
609MAKE_DMA_IO(in, w, 2, 16, );
610MAKE_DMA_IO(out, l, 4, 32, const);
611MAKE_DMA_IO(in, l, 4, 32, );