Blame view

sound/soc/blackfin/bf5xx-sport.c 27.4 KB
8c9c19834   Cliff Cai   sound: ASoC: Blac...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  /*
   * File:         bf5xx_sport.c
   * Based on:
   * Author:       Roy Huang <roy.huang@analog.com>
   *
   * Created:      Tue Sep 21 10:52:42 CEST 2004
   * Description:
   *               Blackfin SPORT Driver
   *
   *               Copyright 2004-2007 Analog Devices Inc.
   *
   * Bugs:         Enter bugs at http://blackfin.uclinux.org/
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License as published by
   * the Free Software Foundation; either version 2 of the License, or
   * (at your option) any later version.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program; if not, see the file COPYING, or write
   * to the Free Software Foundation, Inc.,
   * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
   */
  
  #include <linux/kernel.h>
  #include <linux/slab.h>
  #include <linux/delay.h>
  #include <linux/dma-mapping.h>
  #include <linux/gpio.h>
  #include <linux/bug.h>
6a550b99a   Paul Gortmaker   blackfin: add mod...
36
  #include <linux/module.h>
8c9c19834   Cliff Cai   sound: ASoC: Blac...
37
38
39
40
41
42
43
44
  #include <asm/portmux.h>
  #include <asm/dma.h>
  #include <asm/blackfin.h>
  #include <asm/cacheflush.h>
  
  #include "bf5xx-sport.h"
  /* delay between frame sync pulse and first data bit in multichannel mode */
  #define FRAME_DELAY (1<<12)
8c9c19834   Cliff Cai   sound: ASoC: Blac...
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
  /* note: multichannel is in units of 8 channels,
   * tdm_count is # channels NOT / 8 ! */
  int sport_set_multichannel(struct sport_device *sport,
  		int tdm_count, u32 mask, int packed)
  {
  	pr_debug("%s tdm_count=%d mask:0x%08x packed=%d
  ", __func__,
  			tdm_count, mask, packed);
  
  	if ((sport->regs->tcr1 & TSPEN) || (sport->regs->rcr1 & RSPEN))
  		return -EBUSY;
  
  	if (tdm_count & 0x7)
  		return -EINVAL;
  
  	if (tdm_count > 32)
  		return -EINVAL; /* Only support less than 32 channels now */
  
  	if (tdm_count) {
  		sport->regs->mcmc1 = ((tdm_count>>3)-1) << 12;
  		sport->regs->mcmc2 = FRAME_DELAY | MCMEN | \
  				(packed ? (MCDTXPE|MCDRXPE) : 0);
  
  		sport->regs->mtcs0 = mask;
  		sport->regs->mrcs0 = mask;
  		sport->regs->mtcs1 = 0;
  		sport->regs->mrcs1 = 0;
  		sport->regs->mtcs2 = 0;
  		sport->regs->mrcs2 = 0;
  		sport->regs->mtcs3 = 0;
  		sport->regs->mrcs3 = 0;
  	} else {
  		sport->regs->mcmc1 = 0;
  		sport->regs->mcmc2 = 0;
  
  		sport->regs->mtcs0 = 0;
  		sport->regs->mrcs0 = 0;
  	}
  
  	sport->regs->mtcs1 = 0; sport->regs->mtcs2 = 0; sport->regs->mtcs3 = 0;
  	sport->regs->mrcs1 = 0; sport->regs->mrcs2 = 0; sport->regs->mrcs3 = 0;
  
  	SSYNC();
  
  	return 0;
  }
  EXPORT_SYMBOL(sport_set_multichannel);
  
  int sport_config_rx(struct sport_device *sport, unsigned int rcr1,
  		unsigned int rcr2, unsigned int clkdiv, unsigned int fsdiv)
  {
  	if ((sport->regs->tcr1 & TSPEN) || (sport->regs->rcr1 & RSPEN))
  		return -EBUSY;
  
  	sport->regs->rcr1 = rcr1;
  	sport->regs->rcr2 = rcr2;
  	sport->regs->rclkdiv = clkdiv;
  	sport->regs->rfsdiv = fsdiv;
  
  	SSYNC();
  
  	return 0;
  }
  EXPORT_SYMBOL(sport_config_rx);
  
  int sport_config_tx(struct sport_device *sport, unsigned int tcr1,
  		unsigned int tcr2, unsigned int clkdiv, unsigned int fsdiv)
  {
  	if ((sport->regs->tcr1 & TSPEN) || (sport->regs->rcr1 & RSPEN))
  		return -EBUSY;
  
  	sport->regs->tcr1 = tcr1;
  	sport->regs->tcr2 = tcr2;
  	sport->regs->tclkdiv = clkdiv;
  	sport->regs->tfsdiv = fsdiv;
  
  	SSYNC();
  
  	return 0;
  }
  EXPORT_SYMBOL(sport_config_tx);
  
  static void setup_desc(struct dmasg *desc, void *buf, int fragcount,
  		size_t fragsize, unsigned int cfg,
  		unsigned int x_count, unsigned int ycount, size_t wdsize)
  {
  
  	int i;
  
  	for (i = 0; i < fragcount; ++i) {
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
135
  		desc[i].next_desc_addr  = &(desc[i + 1]);
8c9c19834   Cliff Cai   sound: ASoC: Blac...
136
137
138
139
140
141
142
143
144
  		desc[i].start_addr = (unsigned long)buf + i*fragsize;
  		desc[i].cfg = cfg;
  		desc[i].x_count = x_count;
  		desc[i].x_modify = wdsize;
  		desc[i].y_count = ycount;
  		desc[i].y_modify = wdsize;
  	}
  
  	/* make circular */
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
145
  	desc[fragcount-1].next_desc_addr = desc;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
146

8836c273e   Mike Frysinger   ASoC: Blackfin: d...
147
148
149
150
151
152
  	pr_debug("setup desc: desc0=%p, next0=%p, desc1=%p,"
  		"next1=%p
  x_count=%x,y_count=%x,addr=0x%lx,cfs=0x%x
  ",
  		desc, desc[0].next_desc_addr,
  		desc+1, desc[1].next_desc_addr,
8c9c19834   Cliff Cai   sound: ASoC: Blac...
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
  		desc[0].x_count, desc[0].y_count,
  		desc[0].start_addr, desc[0].cfg);
  }
  
  static int sport_start(struct sport_device *sport)
  {
  	enable_dma(sport->dma_rx_chan);
  	enable_dma(sport->dma_tx_chan);
  	sport->regs->rcr1 |= RSPEN;
  	sport->regs->tcr1 |= TSPEN;
  	SSYNC();
  
  	return 0;
  }
  
  static int sport_stop(struct sport_device *sport)
  {
  	sport->regs->tcr1 &= ~TSPEN;
  	sport->regs->rcr1 &= ~RSPEN;
  	SSYNC();
  
  	disable_dma(sport->dma_rx_chan);
  	disable_dma(sport->dma_tx_chan);
  	return 0;
  }
  
  static inline int sport_hook_rx_dummy(struct sport_device *sport)
  {
  	struct dmasg *desc, temp_desc;
  	unsigned long flags;
  
  	BUG_ON(sport->dummy_rx_desc == NULL);
  	BUG_ON(sport->curr_rx_desc == sport->dummy_rx_desc);
  
  	/* Maybe the dummy buffer descriptor ring is damaged */
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
188
  	sport->dummy_rx_desc->next_desc_addr = sport->dummy_rx_desc + 1;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
189
190
  
  	local_irq_save(flags);
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
191
  	desc = get_dma_next_desc_ptr(sport->dma_rx_chan);
8c9c19834   Cliff Cai   sound: ASoC: Blac...
192
193
  	/* Copy the descriptor which will be damaged to backup */
  	temp_desc = *desc;
80d5bd931   Cliff Cai   ASoC: Blackfin: s...
194
  	desc->x_count = sport->dummy_count / 2;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
195
  	desc->y_count = 0;
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
196
  	desc->next_desc_addr = sport->dummy_rx_desc;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
197
198
199
  	local_irq_restore(flags);
  	/* Waiting for dummy buffer descriptor is already hooked*/
  	while ((get_dma_curr_desc_ptr(sport->dma_rx_chan) -
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
200
201
  			sizeof(struct dmasg)) != sport->dummy_rx_desc)
  		continue;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
202
203
204
205
206
207
208
209
210
211
  	sport->curr_rx_desc = sport->dummy_rx_desc;
  	/* Restore the damaged descriptor */
  	*desc = temp_desc;
  
  	return 0;
  }
  
  static inline int sport_rx_dma_start(struct sport_device *sport, int dummy)
  {
  	if (dummy) {
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
212
  		sport->dummy_rx_desc->next_desc_addr = sport->dummy_rx_desc;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
213
214
215
  		sport->curr_rx_desc = sport->dummy_rx_desc;
  	} else
  		sport->curr_rx_desc = sport->dma_rx_desc;
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
216
  	set_dma_next_desc_addr(sport->dma_rx_chan, sport->curr_rx_desc);
8c9c19834   Cliff Cai   sound: ASoC: Blac...
217
218
219
220
221
222
223
224
225
226
227
228
229
  	set_dma_x_count(sport->dma_rx_chan, 0);
  	set_dma_x_modify(sport->dma_rx_chan, 0);
  	set_dma_config(sport->dma_rx_chan, (DMAFLOW_LARGE | NDSIZE_9 | \
  				WDSIZE_32 | WNR));
  	set_dma_curr_addr(sport->dma_rx_chan, sport->curr_rx_desc->start_addr);
  	SSYNC();
  
  	return 0;
  }
  
  static inline int sport_tx_dma_start(struct sport_device *sport, int dummy)
  {
  	if (dummy) {
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
230
  		sport->dummy_tx_desc->next_desc_addr = sport->dummy_tx_desc;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
231
232
233
  		sport->curr_tx_desc = sport->dummy_tx_desc;
  	} else
  		sport->curr_tx_desc = sport->dma_tx_desc;
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
234
  	set_dma_next_desc_addr(sport->dma_tx_chan, sport->curr_tx_desc);
8c9c19834   Cliff Cai   sound: ASoC: Blac...
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
  	set_dma_x_count(sport->dma_tx_chan, 0);
  	set_dma_x_modify(sport->dma_tx_chan, 0);
  	set_dma_config(sport->dma_tx_chan,
  			(DMAFLOW_LARGE | NDSIZE_9 | WDSIZE_32));
  	set_dma_curr_addr(sport->dma_tx_chan, sport->curr_tx_desc->start_addr);
  	SSYNC();
  
  	return 0;
  }
  
  int sport_rx_start(struct sport_device *sport)
  {
  	unsigned long flags;
  	pr_debug("%s enter
  ", __func__);
  	if (sport->rx_run)
  		return -EBUSY;
  	if (sport->tx_run) {
  		/* tx is running, rx is not running */
  		BUG_ON(sport->dma_rx_desc == NULL);
  		BUG_ON(sport->curr_rx_desc != sport->dummy_rx_desc);
  		local_irq_save(flags);
  		while ((get_dma_curr_desc_ptr(sport->dma_rx_chan) -
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
258
259
260
  			sizeof(struct dmasg)) != sport->dummy_rx_desc)
  			continue;
  		sport->dummy_rx_desc->next_desc_addr = sport->dma_rx_desc;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
  		local_irq_restore(flags);
  		sport->curr_rx_desc = sport->dma_rx_desc;
  	} else {
  		sport_tx_dma_start(sport, 1);
  		sport_rx_dma_start(sport, 0);
  		sport_start(sport);
  	}
  
  	sport->rx_run = 1;
  
  	return 0;
  }
  EXPORT_SYMBOL(sport_rx_start);
  
  int sport_rx_stop(struct sport_device *sport)
  {
  	pr_debug("%s enter
  ", __func__);
  
  	if (!sport->rx_run)
  		return 0;
  	if (sport->tx_run) {
  		/* TX dma is still running, hook the dummy buffer */
  		sport_hook_rx_dummy(sport);
  	} else {
  		/* Both rx and tx dma will be stopped */
  		sport_stop(sport);
  		sport->curr_rx_desc = NULL;
  		sport->curr_tx_desc = NULL;
  	}
  
  	sport->rx_run = 0;
  
  	return 0;
  }
  EXPORT_SYMBOL(sport_rx_stop);
  
  static inline int sport_hook_tx_dummy(struct sport_device *sport)
  {
  	struct dmasg *desc, temp_desc;
  	unsigned long flags;
  
  	BUG_ON(sport->dummy_tx_desc == NULL);
  	BUG_ON(sport->curr_tx_desc == sport->dummy_tx_desc);
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
305
  	sport->dummy_tx_desc->next_desc_addr = sport->dummy_tx_desc + 1;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
306
307
308
  
  	/* Shorten the time on last normal descriptor */
  	local_irq_save(flags);
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
309
  	desc = get_dma_next_desc_ptr(sport->dma_tx_chan);
8c9c19834   Cliff Cai   sound: ASoC: Blac...
310
311
  	/* Store the descriptor which will be damaged */
  	temp_desc = *desc;
80d5bd931   Cliff Cai   ASoC: Blackfin: s...
312
  	desc->x_count = sport->dummy_count / 2;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
313
  	desc->y_count = 0;
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
314
  	desc->next_desc_addr = sport->dummy_tx_desc;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
315
316
317
  	local_irq_restore(flags);
  	/* Waiting for dummy buffer descriptor is already hooked*/
  	while ((get_dma_curr_desc_ptr(sport->dma_tx_chan) - \
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
318
319
  			sizeof(struct dmasg)) != sport->dummy_tx_desc)
  		continue;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
320
321
322
323
324
325
326
327
328
  	sport->curr_tx_desc = sport->dummy_tx_desc;
  	/* Restore the damaged descriptor */
  	*desc = temp_desc;
  
  	return 0;
  }
  
  int sport_tx_start(struct sport_device *sport)
  {
d75150d7c   Mike Frysinger   ASoC: bf5xx-sport...
329
  	unsigned long flags;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
330
331
332
333
334
335
336
337
338
339
340
  	pr_debug("%s: tx_run:%d, rx_run:%d
  ", __func__,
  			sport->tx_run, sport->rx_run);
  	if (sport->tx_run)
  		return -EBUSY;
  	if (sport->rx_run) {
  		BUG_ON(sport->dma_tx_desc == NULL);
  		BUG_ON(sport->curr_tx_desc != sport->dummy_tx_desc);
  		/* Hook the normal buffer descriptor */
  		local_irq_save(flags);
  		while ((get_dma_curr_desc_ptr(sport->dma_tx_chan) -
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
341
342
343
  			sizeof(struct dmasg)) != sport->dummy_tx_desc)
  			continue;
  		sport->dummy_tx_desc->next_desc_addr = sport->dma_tx_desc;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
  		local_irq_restore(flags);
  		sport->curr_tx_desc = sport->dma_tx_desc;
  	} else {
  
  		sport_tx_dma_start(sport, 0);
  		/* Let rx dma run the dummy buffer */
  		sport_rx_dma_start(sport, 1);
  		sport_start(sport);
  	}
  	sport->tx_run = 1;
  	return 0;
  }
  EXPORT_SYMBOL(sport_tx_start);
  
  int sport_tx_stop(struct sport_device *sport)
  {
  	if (!sport->tx_run)
  		return 0;
  	if (sport->rx_run) {
  		/* RX is still running, hook the dummy buffer */
  		sport_hook_tx_dummy(sport);
  	} else {
  		/* Both rx and tx dma stopped */
  		sport_stop(sport);
  		sport->curr_rx_desc = NULL;
  		sport->curr_tx_desc = NULL;
  	}
  
  	sport->tx_run = 0;
  
  	return 0;
  }
  EXPORT_SYMBOL(sport_tx_stop);
  
  static inline int compute_wdsize(size_t wdsize)
  {
  	switch (wdsize) {
  	case 1:
  		return WDSIZE_8;
  	case 2:
  		return WDSIZE_16;
  	case 4:
  	default:
  		return WDSIZE_32;
  	}
  }
  
  int sport_config_rx_dma(struct sport_device *sport, void *buf,
  		int fragcount, size_t fragsize)
  {
  	unsigned int x_count;
  	unsigned int y_count;
  	unsigned int cfg;
  	dma_addr_t addr;
  
  	pr_debug("%s buf:%p, frag:%d, fragsize:0x%lx
  ", __func__, \
  			buf, fragcount, fragsize);
  
  	x_count = fragsize / sport->wdsize;
  	y_count = 0;
  
  	/* for fragments larger than 64k words we use 2d dma,
  	 * denote fragecount as two numbers' mutliply and both of them
  	 * are less than 64k.*/
  	if (x_count >= 0x10000) {
  		int i, count = x_count;
  
  		for (i = 16; i > 0; i--) {
  			x_count = 1 << i;
  			if ((count & (x_count - 1)) == 0) {
  				y_count = count >> i;
  				if (y_count < 0x10000)
  					break;
  			}
  		}
  		if (i == 0)
  			return -EINVAL;
  	}
  	pr_debug("%s(x_count:0x%x, y_count:0x%x)
  ", __func__,
  			x_count, y_count);
  
  	if (sport->dma_rx_desc)
  		dma_free_coherent(NULL, sport->rx_desc_bytes,
  					sport->dma_rx_desc, 0);
  
  	/* Allocate a new descritor ring as current one. */
  	sport->dma_rx_desc = dma_alloc_coherent(NULL, \
  			fragcount * sizeof(struct dmasg), &addr, 0);
  	sport->rx_desc_bytes = fragcount * sizeof(struct dmasg);
  
  	if (!sport->dma_rx_desc) {
  		pr_err("Failed to allocate memory for rx desc
  ");
  		return -ENOMEM;
  	}
  
  	sport->rx_buf = buf;
  	sport->rx_fragsize = fragsize;
  	sport->rx_frags = fragcount;
  
  	cfg     = 0x7000 | DI_EN | compute_wdsize(sport->wdsize) | WNR | \
  		  (DESC_ELEMENT_COUNT << 8); /* large descriptor mode */
  
  	if (y_count != 0)
  		cfg |= DMA2D;
  
  	setup_desc(sport->dma_rx_desc, buf, fragcount, fragsize,
  			cfg|DMAEN, x_count, y_count, sport->wdsize);
  
  	return 0;
  }
  EXPORT_SYMBOL(sport_config_rx_dma);
  
  int sport_config_tx_dma(struct sport_device *sport, void *buf, \
  		int fragcount, size_t fragsize)
  {
  	unsigned int x_count;
  	unsigned int y_count;
  	unsigned int cfg;
  	dma_addr_t addr;
  
  	pr_debug("%s buf:%p, fragcount:%d, fragsize:0x%lx
  ",
  			__func__, buf, fragcount, fragsize);
  
  	x_count = fragsize/sport->wdsize;
  	y_count = 0;
  
  	/* for fragments larger than 64k words we use 2d dma,
  	 * denote fragecount as two numbers' mutliply and both of them
  	 * are less than 64k.*/
  	if (x_count >= 0x10000) {
  		int i, count = x_count;
  
  		for (i = 16; i > 0; i--) {
  			x_count = 1 << i;
  			if ((count & (x_count - 1)) == 0) {
  				y_count = count >> i;
  				if (y_count < 0x10000)
  					break;
  			}
  		}
  		if (i == 0)
  			return -EINVAL;
  	}
  	pr_debug("%s x_count:0x%x, y_count:0x%x
  ", __func__,
  			x_count, y_count);
  
  
  	if (sport->dma_tx_desc) {
  		dma_free_coherent(NULL, sport->tx_desc_bytes, \
  				sport->dma_tx_desc, 0);
  	}
  
  	sport->dma_tx_desc = dma_alloc_coherent(NULL, \
  			fragcount * sizeof(struct dmasg), &addr, 0);
  	sport->tx_desc_bytes = fragcount * sizeof(struct dmasg);
  	if (!sport->dma_tx_desc) {
  		pr_err("Failed to allocate memory for tx desc
  ");
  		return -ENOMEM;
  	}
  
  	sport->tx_buf = buf;
  	sport->tx_fragsize = fragsize;
  	sport->tx_frags = fragcount;
  	cfg     = 0x7000 | DI_EN | compute_wdsize(sport->wdsize) | \
  		  (DESC_ELEMENT_COUNT << 8); /* large descriptor mode */
  
  	if (y_count != 0)
  		cfg |= DMA2D;
  
  	setup_desc(sport->dma_tx_desc, buf, fragcount, fragsize,
  			cfg|DMAEN, x_count, y_count, sport->wdsize);
  
  	return 0;
  }
  EXPORT_SYMBOL(sport_config_tx_dma);
  
  /* setup dummy dma descriptor ring, which don't generate interrupts,
   * the x_modify is set to 0 */
  static int sport_config_rx_dummy(struct sport_device *sport)
  {
  	struct dmasg *desc;
  	unsigned config;
  
  	pr_debug("%s entered
  ", __func__);
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
535
536
537
  	if (L1_DATA_A_LENGTH)
  		desc = l1_data_sram_zalloc(2 * sizeof(*desc));
  	else {
8c9c19834   Cliff Cai   sound: ASoC: Blac...
538
539
  		dma_addr_t addr;
  		desc = dma_alloc_coherent(NULL, 2 * sizeof(*desc), &addr, 0);
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
540
  		memset(desc, 0, 2 * sizeof(*desc));
8c9c19834   Cliff Cai   sound: ASoC: Blac...
541
  	}
8c9c19834   Cliff Cai   sound: ASoC: Blac...
542
543
544
545
546
  	if (desc == NULL) {
  		pr_err("Failed to allocate memory for dummy rx desc
  ");
  		return -ENOMEM;
  	}
8c9c19834   Cliff Cai   sound: ASoC: Blac...
547
548
549
550
551
552
553
554
555
556
  	sport->dummy_rx_desc = desc;
  	desc->start_addr = (unsigned long)sport->dummy_buf;
  	config = DMAFLOW_LARGE | NDSIZE_9 | compute_wdsize(sport->wdsize)
  		 | WNR | DMAEN;
  	desc->cfg = config;
  	desc->x_count = sport->dummy_count/sport->wdsize;
  	desc->x_modify = sport->wdsize;
  	desc->y_count = 0;
  	desc->y_modify = 0;
  	memcpy(desc+1, desc, sizeof(*desc));
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
557
558
  	desc->next_desc_addr = desc + 1;
  	desc[1].next_desc_addr = desc;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
559
560
561
562
563
564
565
566
567
568
  	return 0;
  }
  
  static int sport_config_tx_dummy(struct sport_device *sport)
  {
  	struct dmasg *desc;
  	unsigned int config;
  
  	pr_debug("%s entered
  ", __func__);
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
569
570
571
  	if (L1_DATA_A_LENGTH)
  		desc = l1_data_sram_zalloc(2 * sizeof(*desc));
  	else {
8c9c19834   Cliff Cai   sound: ASoC: Blac...
572
573
  		dma_addr_t addr;
  		desc = dma_alloc_coherent(NULL, 2 * sizeof(*desc), &addr, 0);
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
574
  		memset(desc, 0, 2 * sizeof(*desc));
8c9c19834   Cliff Cai   sound: ASoC: Blac...
575
  	}
8c9c19834   Cliff Cai   sound: ASoC: Blac...
576
577
578
579
580
  	if (!desc) {
  		pr_err("Failed to allocate memory for dummy tx desc
  ");
  		return -ENOMEM;
  	}
8c9c19834   Cliff Cai   sound: ASoC: Blac...
581
582
583
584
585
586
587
588
589
590
591
  	sport->dummy_tx_desc = desc;
  	desc->start_addr = (unsigned long)sport->dummy_buf + \
  		sport->dummy_count;
  	config = DMAFLOW_LARGE | NDSIZE_9 |
  		 compute_wdsize(sport->wdsize) | DMAEN;
  	desc->cfg = config;
  	desc->x_count = sport->dummy_count/sport->wdsize;
  	desc->x_modify = sport->wdsize;
  	desc->y_count = 0;
  	desc->y_modify = 0;
  	memcpy(desc+1, desc, sizeof(*desc));
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
592
593
  	desc->next_desc_addr = desc + 1;
  	desc[1].next_desc_addr = desc;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
  	return 0;
  }
  
  unsigned long sport_curr_offset_rx(struct sport_device *sport)
  {
  	unsigned long curr = get_dma_curr_addr(sport->dma_rx_chan);
  
  	return (unsigned char *)curr - sport->rx_buf;
  }
  EXPORT_SYMBOL(sport_curr_offset_rx);
  
  unsigned long sport_curr_offset_tx(struct sport_device *sport)
  {
  	unsigned long curr = get_dma_curr_addr(sport->dma_tx_chan);
  
  	return (unsigned char *)curr - sport->tx_buf;
  }
  EXPORT_SYMBOL(sport_curr_offset_tx);
  
  void sport_incfrag(struct sport_device *sport, int *frag, int tx)
  {
  	++(*frag);
  	if (tx == 1 && *frag == sport->tx_frags)
  		*frag = 0;
  
  	if (tx == 0 && *frag == sport->rx_frags)
  		*frag = 0;
  }
  EXPORT_SYMBOL(sport_incfrag);
  
  void sport_decfrag(struct sport_device *sport, int *frag, int tx)
  {
  	--(*frag);
  	if (tx == 1 && *frag == 0)
  		*frag = sport->tx_frags;
  
  	if (tx == 0 && *frag == 0)
  		*frag = sport->rx_frags;
  }
  EXPORT_SYMBOL(sport_decfrag);
  
  static int sport_check_status(struct sport_device *sport,
  		unsigned int *sport_stat,
  		unsigned int *rx_stat,
  		unsigned int *tx_stat)
  {
  	int status = 0;
  
  	if (sport_stat) {
  		SSYNC();
  		status = sport->regs->stat;
  		if (status & (TOVF|TUVF|ROVF|RUVF))
  			sport->regs->stat = (status & (TOVF|TUVF|ROVF|RUVF));
  		SSYNC();
  		*sport_stat = status;
  	}
  
  	if (rx_stat) {
  		SSYNC();
  		status = get_dma_curr_irqstat(sport->dma_rx_chan);
  		if (status & (DMA_DONE|DMA_ERR))
  			clear_dma_irqstat(sport->dma_rx_chan);
  		SSYNC();
  		*rx_stat = status;
  	}
  
  	if (tx_stat) {
  		SSYNC();
  		status = get_dma_curr_irqstat(sport->dma_tx_chan);
  		if (status & (DMA_DONE|DMA_ERR))
  			clear_dma_irqstat(sport->dma_tx_chan);
  		SSYNC();
  		*tx_stat = status;
  	}
  
  	return 0;
  }
  
  int  sport_dump_stat(struct sport_device *sport, char *buf, size_t len)
  {
  	int ret;
  
  	ret = snprintf(buf, len,
  			"sts: 0x%04x
  "
  			"rx dma %d sts: 0x%04x tx dma %d sts: 0x%04x
  ",
  			sport->regs->stat,
  			sport->dma_rx_chan,
  			get_dma_curr_irqstat(sport->dma_rx_chan),
  			sport->dma_tx_chan,
  			get_dma_curr_irqstat(sport->dma_tx_chan));
  	buf += ret;
  	len -= ret;
  
  	ret += snprintf(buf, len,
  			"curr_rx_desc:0x%p, curr_tx_desc:0x%p
  "
  			"dma_rx_desc:0x%p, dma_tx_desc:0x%p
  "
  			"dummy_rx_desc:0x%p, dummy_tx_desc:0x%p
  ",
  			sport->curr_rx_desc, sport->curr_tx_desc,
  			sport->dma_rx_desc, sport->dma_tx_desc,
  			sport->dummy_rx_desc, sport->dummy_tx_desc);
  
  	return ret;
  }
  
  static irqreturn_t rx_handler(int irq, void *dev_id)
  {
  	unsigned int rx_stat;
  	struct sport_device *sport = dev_id;
  
  	pr_debug("%s enter
  ", __func__);
  	sport_check_status(sport, NULL, &rx_stat, NULL);
  	if (!(rx_stat & DMA_DONE))
  		pr_err("rx dma is already stopped
  ");
  
  	if (sport->rx_callback) {
  		sport->rx_callback(sport->rx_data);
  		return IRQ_HANDLED;
  	}
  
  	return IRQ_NONE;
  }
  
  static irqreturn_t tx_handler(int irq, void *dev_id)
  {
  	unsigned int tx_stat;
  	struct sport_device *sport = dev_id;
  	pr_debug("%s enter
  ", __func__);
  	sport_check_status(sport, NULL, NULL, &tx_stat);
  	if (!(tx_stat & DMA_DONE)) {
  		pr_err("tx dma is already stopped
  ");
  		return IRQ_HANDLED;
  	}
  	if (sport->tx_callback) {
  		sport->tx_callback(sport->tx_data);
  		return IRQ_HANDLED;
  	}
  
  	return IRQ_NONE;
  }
  
  static irqreturn_t err_handler(int irq, void *dev_id)
  {
  	unsigned int status = 0;
  	struct sport_device *sport = dev_id;
  
  	pr_debug("%s
  ", __func__);
  	if (sport_check_status(sport, &status, NULL, NULL)) {
  		pr_err("error checking status ??");
  		return IRQ_NONE;
  	}
  
  	if (status & (TOVF|TUVF|ROVF|RUVF)) {
  		pr_info("sport status error:%s%s%s%s
  ",
  				status & TOVF ? " TOVF" : "",
  				status & TUVF ? " TUVF" : "",
  				status & ROVF ? " ROVF" : "",
  				status & RUVF ? " RUVF" : "");
  		if (status & TOVF || status & TUVF) {
  			disable_dma(sport->dma_tx_chan);
  			if (sport->tx_run)
  				sport_tx_dma_start(sport, 0);
  			else
  				sport_tx_dma_start(sport, 1);
  			enable_dma(sport->dma_tx_chan);
  		} else {
  			disable_dma(sport->dma_rx_chan);
  			if (sport->rx_run)
  				sport_rx_dma_start(sport, 0);
  			else
  				sport_rx_dma_start(sport, 1);
  			enable_dma(sport->dma_rx_chan);
  		}
  	}
  	status = sport->regs->stat;
  	if (status & (TOVF|TUVF|ROVF|RUVF))
  		sport->regs->stat = (status & (TOVF|TUVF|ROVF|RUVF));
  	SSYNC();
  
  	if (sport->err_callback)
  		sport->err_callback(sport->err_data);
  
  	return IRQ_HANDLED;
  }
  
  int sport_set_rx_callback(struct sport_device *sport,
  		       void (*rx_callback)(void *), void *rx_data)
  {
  	BUG_ON(rx_callback == NULL);
  	sport->rx_callback = rx_callback;
  	sport->rx_data = rx_data;
  
  	return 0;
  }
  EXPORT_SYMBOL(sport_set_rx_callback);
  
  int sport_set_tx_callback(struct sport_device *sport,
  		void (*tx_callback)(void *), void *tx_data)
  {
  	BUG_ON(tx_callback == NULL);
  	sport->tx_callback = tx_callback;
  	sport->tx_data = tx_data;
  
  	return 0;
  }
  EXPORT_SYMBOL(sport_set_tx_callback);
  
  int sport_set_err_callback(struct sport_device *sport,
  		void (*err_callback)(void *), void *err_data)
  {
  	BUG_ON(err_callback == NULL);
  	sport->err_callback = err_callback;
  	sport->err_data = err_data;
  
  	return 0;
  }
  EXPORT_SYMBOL(sport_set_err_callback);
2c66cb99d   Barry Song   ASoC: Blackfin: p...
821
  static int sport_config_pdev(struct platform_device *pdev, struct sport_param *param)
8c9c19834   Cliff Cai   sound: ASoC: Blac...
822
  {
2c66cb99d   Barry Song   ASoC: Blackfin: p...
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
  	/* Extract settings from platform data */
  	struct device *dev = &pdev->dev;
  	struct bfin_snd_platform_data *pdata = dev->platform_data;
  	struct resource *res;
  
  	param->num = pdev->id;
  
  	if (!pdata) {
  		dev_err(dev, "no platform_data
  ");
  		return -ENODEV;
  	}
  	param->pin_req = pdata->pin_req;
  
  	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  	if (!res) {
  		dev_err(dev, "no MEM resource
  ");
  		return -ENODEV;
  	}
  	param->regs = (struct sport_register *)res->start;
  
  	/* first RX, then TX */
  	res = platform_get_resource(pdev, IORESOURCE_DMA, 0);
  	if (!res) {
  		dev_err(dev, "no rx DMA resource
  ");
  		return -ENODEV;
  	}
  	param->dma_rx_chan = res->start;
  
  	res = platform_get_resource(pdev, IORESOURCE_DMA, 1);
  	if (!res) {
  		dev_err(dev, "no tx DMA resource
  ");
  		return -ENODEV;
  	}
  	param->dma_tx_chan = res->start;
  
  	res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
  	if (!res) {
  		dev_err(dev, "no irq resource
  ");
  		return -ENODEV;
  	}
  	param->err_irq = res->start;
  
  	return 0;
  }
  
  struct sport_device *sport_init(struct platform_device *pdev,
  	unsigned int wdsize, unsigned int dummy_count, size_t priv_size)
  {
  	struct device *dev = &pdev->dev;
  	struct sport_param param;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
878
  	struct sport_device *sport;
2c66cb99d   Barry Song   ASoC: Blackfin: p...
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
  	int ret;
  
  	dev_dbg(dev, "%s enter
  ", __func__);
  
  	param.wdsize = wdsize;
  	param.dummy_count = dummy_count;
  	BUG_ON(param.wdsize == 0 || param.dummy_count == 0);
  
  	ret = sport_config_pdev(pdev, &param);
  	if (ret)
  		return NULL;
  
  	if (peripheral_request_list(param.pin_req, "soc-audio")) {
  		dev_err(dev, "requesting Peripherals failed
  ");
8c9c19834   Cliff Cai   sound: ASoC: Blac...
895
896
  		return NULL;
  	}
2c66cb99d   Barry Song   ASoC: Blackfin: p...
897
898
899
900
901
902
903
904
905
906
907
908
909
  	sport = kzalloc(sizeof(*sport), GFP_KERNEL);
  	if (!sport) {
  		dev_err(dev, "failed to allocate for sport device
  ");
  		goto __init_err0;
  	}
  
  	sport->num = param.num;
  	sport->dma_rx_chan = param.dma_rx_chan;
  	sport->dma_tx_chan = param.dma_tx_chan;
  	sport->err_irq = param.err_irq;
  	sport->regs = param.regs;
  	sport->pin_req = param.pin_req;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
910
911
  
  	if (request_dma(sport->dma_rx_chan, "SPORT RX Data") == -EBUSY) {
2c66cb99d   Barry Song   ASoC: Blackfin: p...
912
913
  		dev_err(dev, "failed to request RX dma %d
  ", sport->dma_rx_chan);
8c9c19834   Cliff Cai   sound: ASoC: Blac...
914
915
916
  		goto __init_err1;
  	}
  	if (set_dma_callback(sport->dma_rx_chan, rx_handler, sport) != 0) {
2c66cb99d   Barry Song   ASoC: Blackfin: p...
917
918
  		dev_err(dev, "failed to request RX irq %d
  ", sport->dma_rx_chan);
8c9c19834   Cliff Cai   sound: ASoC: Blac...
919
920
921
922
  		goto __init_err2;
  	}
  
  	if (request_dma(sport->dma_tx_chan, "SPORT TX Data") == -EBUSY) {
2c66cb99d   Barry Song   ASoC: Blackfin: p...
923
924
  		dev_err(dev, "failed to request TX dma %d
  ", sport->dma_tx_chan);
8c9c19834   Cliff Cai   sound: ASoC: Blac...
925
926
927
928
  		goto __init_err2;
  	}
  
  	if (set_dma_callback(sport->dma_tx_chan, tx_handler, sport) != 0) {
2c66cb99d   Barry Song   ASoC: Blackfin: p...
929
930
  		dev_err(dev, "failed to request TX irq %d
  ", sport->dma_tx_chan);
8c9c19834   Cliff Cai   sound: ASoC: Blac...
931
932
933
934
935
  		goto __init_err3;
  	}
  
  	if (request_irq(sport->err_irq, err_handler, IRQF_SHARED, "SPORT err",
  			sport) < 0) {
2c66cb99d   Barry Song   ASoC: Blackfin: p...
936
937
  		dev_err(dev, "failed to request err irq %d
  ", sport->err_irq);
8c9c19834   Cliff Cai   sound: ASoC: Blac...
938
939
  		goto __init_err3;
  	}
2c66cb99d   Barry Song   ASoC: Blackfin: p...
940
941
  	dev_info(dev, "dma rx:%d tx:%d, err irq:%d, regs:%p
  ",
8c9c19834   Cliff Cai   sound: ASoC: Blac...
942
943
  			sport->dma_rx_chan, sport->dma_tx_chan,
  			sport->err_irq, sport->regs);
2c66cb99d   Barry Song   ASoC: Blackfin: p...
944
945
946
947
948
949
950
951
952
  	sport->wdsize = param.wdsize;
  	sport->dummy_count = param.dummy_count;
  
  	sport->private_data = kzalloc(priv_size, GFP_KERNEL);
  	if (!sport->private_data) {
  		dev_err(dev, "could not alloc priv data %zu bytes
  ", priv_size);
  		goto __init_err4;
  	}
8c9c19834   Cliff Cai   sound: ASoC: Blac...
953

8836c273e   Mike Frysinger   ASoC: Blackfin: d...
954
  	if (L1_DATA_A_LENGTH)
2c66cb99d   Barry Song   ASoC: Blackfin: p...
955
  		sport->dummy_buf = l1_data_sram_zalloc(param.dummy_count * 2);
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
956
  	else
2c66cb99d   Barry Song   ASoC: Blackfin: p...
957
  		sport->dummy_buf = kzalloc(param.dummy_count * 2, GFP_KERNEL);
8c9c19834   Cliff Cai   sound: ASoC: Blac...
958
  	if (sport->dummy_buf == NULL) {
2c66cb99d   Barry Song   ASoC: Blackfin: p...
959
960
961
  		dev_err(dev, "failed to allocate dummy buffer
  ");
  		goto __error1;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
962
  	}
8c9c19834   Cliff Cai   sound: ASoC: Blac...
963
964
  	ret = sport_config_rx_dummy(sport);
  	if (ret) {
2c66cb99d   Barry Song   ASoC: Blackfin: p...
965
966
967
  		dev_err(dev, "failed to config rx dummy ring
  ");
  		goto __error2;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
968
969
970
  	}
  	ret = sport_config_tx_dummy(sport);
  	if (ret) {
2c66cb99d   Barry Song   ASoC: Blackfin: p...
971
972
973
  		dev_err(dev, "failed to config tx dummy ring
  ");
  		goto __error3;
8c9c19834   Cliff Cai   sound: ASoC: Blac...
974
  	}
2c66cb99d   Barry Song   ASoC: Blackfin: p...
975
  	platform_set_drvdata(pdev, sport);
8c9c19834   Cliff Cai   sound: ASoC: Blac...
976
  	return sport;
2c66cb99d   Barry Song   ASoC: Blackfin: p...
977
978
979
980
981
982
983
984
985
986
987
988
989
990
  __error3:
  	if (L1_DATA_A_LENGTH)
  		l1_data_sram_free(sport->dummy_rx_desc);
  	else
  		dma_free_coherent(NULL, 2*sizeof(struct dmasg),
  				sport->dummy_rx_desc, 0);
  __error2:
  	if (L1_DATA_A_LENGTH)
  		l1_data_sram_free(sport->dummy_buf);
  	else
  		kfree(sport->dummy_buf);
  __error1:
  	kfree(sport->private_data);
  __init_err4:
8c9c19834   Cliff Cai   sound: ASoC: Blac...
991
992
993
994
995
996
997
  	free_irq(sport->err_irq, sport);
  __init_err3:
  	free_dma(sport->dma_tx_chan);
  __init_err2:
  	free_dma(sport->dma_rx_chan);
  __init_err1:
  	kfree(sport);
2c66cb99d   Barry Song   ASoC: Blackfin: p...
998
999
  __init_err0:
  	peripheral_free_list(param.pin_req);
8c9c19834   Cliff Cai   sound: ASoC: Blac...
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
  	return NULL;
  }
  EXPORT_SYMBOL(sport_init);
  
  void sport_done(struct sport_device *sport)
  {
  	if (sport == NULL)
  		return;
  
  	sport_stop(sport);
  	if (sport->dma_rx_desc)
  		dma_free_coherent(NULL, sport->rx_desc_bytes,
  			sport->dma_rx_desc, 0);
  	if (sport->dma_tx_desc)
  		dma_free_coherent(NULL, sport->tx_desc_bytes,
  			sport->dma_tx_desc, 0);
  
  #if L1_DATA_A_LENGTH != 0
  	l1_data_sram_free(sport->dummy_rx_desc);
  	l1_data_sram_free(sport->dummy_tx_desc);
  	l1_data_sram_free(sport->dummy_buf);
  #else
  	dma_free_coherent(NULL, 2*sizeof(struct dmasg),
  		sport->dummy_rx_desc, 0);
  	dma_free_coherent(NULL, 2*sizeof(struct dmasg),
  		sport->dummy_tx_desc, 0);
  	kfree(sport->dummy_buf);
  #endif
  	free_dma(sport->dma_rx_chan);
  	free_dma(sport->dma_tx_chan);
  	free_irq(sport->err_irq, sport);
2c66cb99d   Barry Song   ASoC: Blackfin: p...
1031
1032
  	kfree(sport->private_data);
  	peripheral_free_list(sport->pin_req);
8c9c19834   Cliff Cai   sound: ASoC: Blac...
1033
  	kfree(sport);
8c9c19834   Cliff Cai   sound: ASoC: Blac...
1034
1035
  }
  EXPORT_SYMBOL(sport_done);
8836c273e   Mike Frysinger   ASoC: Blackfin: d...
1036

8c9c19834   Cliff Cai   sound: ASoC: Blac...
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
  /*
  * It is only used to send several bytes when dma is not enabled
   * sport controller is configured but not enabled.
   * Multichannel cannot works with pio mode */
  /* Used by ac97 to write and read codec register */
  int sport_send_and_recv(struct sport_device *sport, u8 *out_data, \
  		u8 *in_data, int len)
  {
  	unsigned short dma_config;
  	unsigned short status;
  	unsigned long flags;
  	unsigned long wait = 0;
  
  	pr_debug("%s enter, out_data:%p, in_data:%p len:%d
  ", \
  			__func__, out_data, in_data, len);
  	pr_debug("tcr1:0x%04x, tcr2:0x%04x, tclkdiv:0x%04x, tfsdiv:0x%04x
  "
  			"mcmc1:0x%04x, mcmc2:0x%04x
  ",
  			sport->regs->tcr1, sport->regs->tcr2,
  			sport->regs->tclkdiv, sport->regs->tfsdiv,
  			sport->regs->mcmc1, sport->regs->mcmc2);
  	flush_dcache_range((unsigned)out_data, (unsigned)(out_data + len));
  
  	/* Enable tx dma */
  	dma_config = (RESTART | WDSIZE_16 | DI_EN);
  	set_dma_start_addr(sport->dma_tx_chan, (unsigned long)out_data);
  	set_dma_x_count(sport->dma_tx_chan, len/2);
  	set_dma_x_modify(sport->dma_tx_chan, 2);
  	set_dma_config(sport->dma_tx_chan, dma_config);
  	enable_dma(sport->dma_tx_chan);
  
  	if (in_data != NULL) {
  		invalidate_dcache_range((unsigned)in_data, \
  				(unsigned)(in_data + len));
  		/* Enable rx dma */
  		dma_config = (RESTART | WDSIZE_16 | WNR | DI_EN);
  		set_dma_start_addr(sport->dma_rx_chan, (unsigned long)in_data);
  		set_dma_x_count(sport->dma_rx_chan, len/2);
  		set_dma_x_modify(sport->dma_rx_chan, 2);
  		set_dma_config(sport->dma_rx_chan, dma_config);
  		enable_dma(sport->dma_rx_chan);
  	}
  
  	local_irq_save(flags);
  	sport->regs->tcr1 |= TSPEN;
  	sport->regs->rcr1 |= RSPEN;
  	SSYNC();
  
  	status = get_dma_curr_irqstat(sport->dma_tx_chan);
  	while (status & DMA_RUN) {
  		udelay(1);
  		status = get_dma_curr_irqstat(sport->dma_tx_chan);
  		pr_debug("DMA status:0x%04x
  ", status);
  		if (wait++ > 100)
  			goto __over;
  	}
  	status = sport->regs->stat;
  	wait = 0;
  
  	while (!(status & TXHRE)) {
  		pr_debug("sport status:0x%04x
  ", status);
  		udelay(1);
  		status = *(unsigned short *)&sport->regs->stat;
  		if (wait++ > 1000)
  			goto __over;
  	}
  	/* Wait for the last byte sent out */
  	udelay(20);
  	pr_debug("sport status:0x%04x
  ", status);
  
  __over:
  	sport->regs->tcr1 &= ~TSPEN;
  	sport->regs->rcr1 &= ~RSPEN;
  	SSYNC();
  	disable_dma(sport->dma_tx_chan);
  	/* Clear the status */
  	clear_dma_irqstat(sport->dma_tx_chan);
  	if (in_data != NULL) {
  		disable_dma(sport->dma_rx_chan);
  		clear_dma_irqstat(sport->dma_rx_chan);
  	}
  	SSYNC();
  	local_irq_restore(flags);
  
  	return 0;
  }
  EXPORT_SYMBOL(sport_send_and_recv);
  
  MODULE_AUTHOR("Roy Huang");
  MODULE_DESCRIPTION("SPORT driver for ADI Blackfin");
  MODULE_LICENSE("GPL");