Blame view

kernel/linux-rt-4.4.41/drivers/rapidio/devices/keystone_rio_dma.c 20.1 KB
5113f6f70   김현기   kernel add
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
36
37
38
39
40
41
42
43
44
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
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
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
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
  /*
   * Copyright (C) 2016 Texas Instruments Incorporated
   * Authors: Aurelien Jacquiot <a-jacquiot@ti.com>
   *
   * 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 version 2.
   *
   * This program is distributed "as is" WITHOUT ANY WARRANTY of any
   * kind, whether express or implied; without even the implied warranty
   * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   */
  #include <linux/errno.h>
  #include <linux/init.h>
  #include <linux/kernel.h>
  #include <linux/module.h>
  #include <linux/slab.h>
  #include <linux/rio.h>
  #include <linux/rio_drv.h>
  #include <linux/dma-mapping.h>
  #include <linux/interrupt.h>
  #include <linux/kfifo.h>
  #include <linux/delay.h>
  
  #include "keystone_rio_serdes.h"
  #include "keystone_rio.h"
  
  static void keystone_rio_dma_start(struct keystone_rio_dma_chan *chan);
  
  static inline struct keystone_rio_dma_desc *desc_from_adesc(
  	struct dma_async_tx_descriptor *adesc)
  {
  	return container_of(adesc, struct keystone_rio_dma_desc, adesc);
  }
  
  static inline struct dma_async_tx_descriptor *desc_to_adesc(
  	struct keystone_rio_dma_desc *desc)
  {
  	return &desc->adesc;
  }
  
  static int keystone_rio_dma_chan_set_state(struct keystone_rio_dma_chan *chan,
  					   enum keystone_rio_chan_state old,
  					   enum keystone_rio_chan_state new)
  {
  	enum keystone_rio_chan_state cur;
  
  	cur = atomic_cmpxchg(&chan->state, old, new);
  
  	if (likely(cur == old))
  		return 0;
  
  	return -EINVAL;
  }
  
  static inline enum keystone_rio_chan_state
  keystone_rio_dma_chan_get_state(struct keystone_rio_dma_chan *chan)
  {
  	return atomic_read(&chan->state);
  }
  
  static inline void
  keystone_rio_dma_chan_force_state(struct keystone_rio_dma_chan *chan,
  				  enum keystone_rio_chan_state state)
  {
  	atomic_set(&chan->state, state);
  }
  
  /*
   * Return the first descriptor of the active list (called with spinlock held)
   */
  static inline struct keystone_rio_dma_desc *keystone_rio_dma_first_active(
  	struct keystone_rio_dma_chan *chan)
  {
  	if (list_empty(&chan->active_list))
  		return NULL;
  
  	return list_first_entry(&chan->active_list,
  				struct keystone_rio_dma_desc,
  				node);
  }
  
  /*
   * Return the next descriptor of a transfer list (called with spinlock held)
   */
  static inline struct keystone_rio_dma_desc *keystone_rio_dma_next(
  	struct keystone_rio_dma_chan *chan)
  {
  	struct keystone_rio_dma_desc *desc = chan->current_transfer;
  	struct keystone_rio_dma_desc *next;
  
  	next = list_entry(desc->tx_list.next, struct keystone_rio_dma_desc,
  			  tx_list);
  	if (next == desc)
  		return NULL;
  
  	return next;
  }
  
  static inline void keystone_rio_dma_complete_notify(
  	struct keystone_rio_data *krio_priv,
  	u32 lsu)
  {
  	struct keystone_rio_dma_chan *chan, *_c;
  
  	list_for_each_entry_safe(chan, _c, &krio_priv->dma_channels[lsu], node)
  		tasklet_schedule(&chan->tasklet);
  }
  
  void keystone_rio_dma_interrupt_handler(struct keystone_rio_data *krio_priv,
  					u32 lsu,
  					u32 error)
  {
  	if (unlikely(error)) {
  		/*
  		 * In case of error we do not know the LSU, so complete all
  		 * running channels
  		 */
  		u32 __lsu;
  
  		for (__lsu = 0; __lsu < KEYSTONE_RIO_LSU_NUM; __lsu++)
  			keystone_rio_dma_complete_notify(krio_priv, __lsu);
  	} else {
  		/* Notify all channels for the corresponding LSU */
  		keystone_rio_dma_complete_notify(krio_priv, lsu);
  	}
  }
  
  static inline void keystone_rio_dma_chain_complete(
  	struct keystone_rio_dma_chan *chan,
  	struct keystone_rio_dma_desc *desc)
  {
  	struct dma_async_tx_descriptor *adesc = desc_to_adesc(desc);
  	dma_async_tx_callback callback = adesc->callback;
  	void *param = adesc->callback_param;
  
  	chan->completed_cookie = adesc->cookie;
  
  	if (callback)
  		callback(param);
  }
  
  static inline void keystone_rio_dma_complete(struct keystone_rio_dma_chan *chan,
  					     struct list_head *list,
  					     int call_completion)
  {
  	struct keystone_rio_dma_desc *desc, *_d;
  	struct keystone_rio_dma_desc *frag_desc, *_fd;
  
  	list_for_each_entry_safe(desc, _d, list, node) {
  		/* Call completion handler */
  		if (call_completion)
  			keystone_rio_dma_chain_complete(chan, desc);
  
  		/* Free all fragment descriptors if any */
  		list_for_each_entry_safe(frag_desc, _fd, &desc->tx_list,
  					 tx_list)
  			kfree(frag_desc);
  
  		kfree(desc);
  	}
  }
  
  /*
   * Do the completion of the whole transfer
   */
  static void keystone_rio_dma_complete_all(struct keystone_rio_dma_chan *chan)
  {
  	LIST_HEAD(list);
  
  	/* Complete the current active transfer and prepare the next one */
  	spin_lock(&chan->lock);
  	list_splice_init(&chan->active_list, &list);
  	list_splice_init(&chan->queue, &chan->active_list);
  	spin_unlock(&chan->lock);
  
  	keystone_rio_dma_complete(chan, &list, 1);
  }
  
  /*
   * Return the next transfer chunk to perform (called with spinlock held)
   */
  static struct keystone_rio_dma_desc *
  keystone_rio_dma_next_work(struct keystone_rio_dma_chan *chan)
  {
  	if (!chan->current_transfer) {
  		/* If no current_transfer */
  		chan->current_transfer = keystone_rio_dma_first_active(chan);
  		dev_dbg(chan_dev(chan),
  			"%s: no current transfer, moving to first_active 0x%p
  ",
  			__func__, chan->current_transfer);
  	} else {
  		/* Move to next part of the transfer */
  		chan->current_transfer = keystone_rio_dma_next(chan);
  		dev_dbg(chan_dev(chan),
  			"%s: moving to next part of the transfer 0x%p
  ",
  			__func__, chan->current_transfer);
  	}
  	return chan->current_transfer;
  }
  
  /*
   * Start a transfer for a given channel
   */
  static void keystone_rio_dma_start(struct keystone_rio_dma_chan *chan)
  {
  	struct keystone_rio_dma_desc *desc;
  	unsigned long flags;
  	int res;
  
  	spin_lock_irqsave(&chan->lock, flags);
  
  	desc = chan->current_transfer;
  
  	if (unlikely((!desc) || (keystone_rio_dma_chan_get_state(chan)
  				 != RIO_CHAN_STATE_ACTIVE))) {
  		spin_unlock_irqrestore(&chan->lock, flags);
  		return;
  	}
  
  	keystone_rio_dma_chan_set_state(chan, RIO_CHAN_STATE_ACTIVE,
  					RIO_CHAN_STATE_RUNNING);
  
  	/* Perform the DIO transfer */
  	dev_dbg(chan_dev(chan),
  		"%s: perform current DIO transfer (desc = 0x%p)
  ",
  		__func__, desc);
  
  	res = keystone_rio_lsu_start_transfer(chan->lsu,
  					      desc->port_id,
  					      desc->dest_id,
  					      desc->buff_addr,
  					      desc->rio_addr,
  					      desc->size,
  					      desc->sys_size,
  					      desc->packet_type,
  					      &desc->lsu_context,
  					      1,
  					      chan->krio);
  	if (res) {
  		desc->status = DMA_ERROR;
  		spin_unlock_irqrestore(&chan->lock, flags);
  		dev_err(chan_dev(chan), "DIO: transfer error %d
  ", res);
  		return;
  	}
  
  	keystone_rio_dma_chan_set_state(chan, RIO_CHAN_STATE_RUNNING,
  					RIO_CHAN_STATE_WAITING);
  
  	spin_unlock_irqrestore(&chan->lock, flags);
  }
  
  static void keystone_rio_dma_tasklet(unsigned long data)
  {
  	struct keystone_rio_dma_chan *chan =
  				(struct keystone_rio_dma_chan *)data;
  	struct keystone_rio_dma_desc *desc;
  	int res = 0;
  
  	spin_lock(&chan->lock);
  
  	desc = chan->current_transfer;
  
  	dev_dbg(chan_dev(chan), "tasklet called for channel%d
  ",
  		chan_id(chan));
  
  	if (unlikely((!desc) || (keystone_rio_dma_chan_get_state(chan)
  				 != RIO_CHAN_STATE_WAITING))) {
  		spin_unlock(&chan->lock);
  		return;
  	}
  
  	/* Check the completion code */
  	res = keystone_rio_lsu_complete_transfer(chan->lsu,
  						 desc->lsu_context,
  						 chan->krio);
  
  	if ((res == -EAGAIN) && (desc->retry_count-- > 0)) {
  		spin_unlock(&chan->lock);
  
  		dev_dbg(chan_dev(chan),
  			"LSU%d transfer not completed (busy) context 0x%x (0x%p), restart the channel completion
  ",
  			chan->lsu, desc->lsu_context,
  			&desc->lsu_context);
  
  		tasklet_schedule(&chan->tasklet);
  		return;
  	}
  
  	if (res) {
  		desc->status = DMA_ERROR;
  		spin_unlock(&chan->lock);
  
  		dev_dbg(chan_dev(chan),
  			"%s: LSU%d DMA transfer failed with %d
  ",
  			__func__, chan->lsu, res);
  
  		/* Stop current transfer */
  		return;
  	}
  
  	/* If last part of the transfer, do the DMA completion */
  	if (desc->last) {
  		spin_unlock(&chan->lock);
  		keystone_rio_dma_complete_all(chan);
  		spin_lock(&chan->lock);
  		chan->current_transfer = NULL;
  	}
  
  	/* Move to next transfer */
  	desc = keystone_rio_dma_next_work(chan);
  
  	keystone_rio_dma_chan_set_state(chan, RIO_CHAN_STATE_WAITING,
  					RIO_CHAN_STATE_ACTIVE);
  
  	spin_unlock(&chan->lock);
  
  	/* Start next transfer if any */
  	if (desc)
  		keystone_rio_dma_start(chan);
  }
  
  static int keystone_rio_dma_alloc_chan_resources(struct dma_chan *dchan)
  {
  	struct keystone_rio_dma_chan *chan = from_dma_chan(dchan);
  
  	dev_dbg(chan_dev(chan), "init DMA engine channel%d
  ", chan_id(chan));
  
  	spin_lock_bh(&chan->lock);
  	WARN_ON(!list_empty(&chan->active_list));
  	WARN_ON(!list_empty(&chan->queue));
  
  	chan->completed_cookie = 1;
  	dchan->cookie = 1;
  	spin_unlock_bh(&chan->lock);
  	keystone_rio_dma_chan_set_state(chan, RIO_CHAN_STATE_UNUSED,
  					RIO_CHAN_STATE_ACTIVE);
  
  	tasklet_enable(&chan->tasklet);
  	return 0;
  }
  
  static void keystone_rio_dma_free_chan_resources(struct dma_chan *dchan)
  {
  	struct keystone_rio_dma_chan *chan = from_dma_chan(dchan);
  	LIST_HEAD(list);
  
  	dev_dbg(chan_dev(chan), "freeing DMA Engine channel%d
  ",
  		chan_id(chan));
  
  	if (keystone_rio_dma_chan_get_state(chan) != RIO_CHAN_STATE_ACTIVE) {
  		dev_warn(chan_dev(chan),
  			 "freeing still running DMA channel %d!!!
  ",
  			 chan_id(chan));
  	}
  
  	keystone_rio_dma_chan_force_state(chan, RIO_CHAN_STATE_UNUSED);
  
  	tasklet_disable(&chan->tasklet);
  
  	/* Purge the current active and queued transfers */
  	if (!list_empty(&chan->active_list)) {
  		dev_warn(chan_dev(chan),
  			 "transfer still active on DMA channel %d!!!
  ",
  			 chan_id(chan));
  		spin_lock_bh(&chan->lock);
  		list_splice_init(&chan->active_list, &list);
  		spin_unlock_bh(&chan->lock);
  	}
  
  	if (!list_empty(&chan->queue)) {
  		dev_warn(chan_dev(chan),
  			 "queued transfers on DMA channel %d!!!
  ",
  			 chan_id(chan));
  		spin_lock_bh(&chan->lock);
  		list_splice_init(&chan->queue, &list);
  		spin_unlock_bh(&chan->lock);
  	}
  
  	if (!list_empty(&list))
  		keystone_rio_dma_complete(chan, &list, 0);
  
  	chan->current_transfer = NULL;
  }
  
  static void keystone_rio_dma_issue_pending(struct dma_chan *dchan)
  {
  	struct keystone_rio_dma_chan *chan = from_dma_chan(dchan);
  
  	if (keystone_rio_dma_chan_get_state(chan) == RIO_CHAN_STATE_ACTIVE) {
  		struct keystone_rio_dma_desc *desc;
  
  		spin_lock_bh(&chan->lock);
  		desc = keystone_rio_dma_next_work(chan);
  		spin_unlock_bh(&chan->lock);
  
  		if (desc)
  			keystone_rio_dma_start(chan);
  
  	} else
  		dev_dbg(chan_dev(chan),	"%s: DMA channel busy, state = %d
  ",
  			__func__, keystone_rio_dma_chan_get_state(chan));
  }
  
  static enum dma_status keystone_rio_dma_tx_status(struct dma_chan *dchan,
  						  dma_cookie_t cookie,
  						  struct dma_tx_state *txstate)
  {
  	struct keystone_rio_dma_chan *chan = from_dma_chan(dchan);
  	struct keystone_rio_dma_desc *desc = chan->current_transfer;
  	dma_cookie_t last_used;
  	dma_cookie_t last_completed;
  	enum dma_status status;
  
  	spin_lock_bh(&chan->lock);
  	last_completed = chan->completed_cookie;
  	last_used      = dchan->cookie;
  	spin_unlock_bh(&chan->lock);
  
  	/*
  	 * In case of error, totally complete the current transfer
  	 * and start the new then return error
  	 */
  	if ((desc) && (desc->status == DMA_ERROR)) {
  		dev_dbg(chan_dev(chan), "%s: DMA error
  ", __func__);
  
  		keystone_rio_dma_complete_all(chan);
  		spin_lock_bh(&chan->lock);
  
  		/* Even if not the last, stop the current transfer */
  		chan->current_transfer = NULL;
  
  		keystone_rio_dma_chan_set_state(chan, RIO_CHAN_STATE_WAITING,
  						RIO_CHAN_STATE_ACTIVE);
  
  		spin_unlock_bh(&chan->lock);
  		keystone_rio_dma_issue_pending(dchan);
  		return DMA_ERROR;
  	}
  
  	status = dma_async_is_complete(cookie, last_completed, last_used);
  	dma_set_tx_state(txstate, last_completed, last_used, 0);
  
  	dev_dbg(chan_dev(chan),
  		"%s: exit, ret: %d, last_completed: %d, last_used: %d
  ",
  		__func__, (int)status, last_completed, last_used);
  
  	return status;
  }
  
  static dma_cookie_t keystone_rio_dma_tx_submit(
  	struct dma_async_tx_descriptor *adesc)
  {
  	struct keystone_rio_dma_desc *desc = desc_from_adesc(adesc);
  	struct keystone_rio_dma_chan *chan = from_dma_chan(adesc->chan);
  	unsigned long flags;
  	dma_cookie_t cookie;
  
  	spin_lock_irqsave(&chan->lock, flags);
  
  	/* Increment the DMA cookie */
  	cookie = adesc->chan->cookie;
  	if (++cookie < 0)
  		cookie = 1;
  	adesc->chan->cookie = cookie;
  	adesc->cookie = cookie;
  
  	/* Add the transfer to the DMA */
  	if (list_empty(&chan->active_list)) {
  		list_add_tail(&desc->node, &chan->active_list);
  		if (!chan->current_transfer) {
  			/* if no current_transfer */
  			chan->current_transfer =
  				keystone_rio_dma_first_active(chan);
  		}
  		spin_unlock_irqrestore(&chan->lock, flags);
  
  		/* Initiate the transfer */
  		keystone_rio_dma_start(chan);
  	} else {
  		list_add_tail(&desc->node, &chan->queue);
  		spin_unlock_irqrestore(&chan->lock, flags);
  	}
  
  	return cookie;
  }
  
  static struct dma_async_tx_descriptor *
  keystone_rio_dma_prep_slave_sg(struct dma_chan *dchan,
  			       struct scatterlist *sgl,
  			       unsigned int sg_len,
  			       enum dma_transfer_direction dir,
  			       unsigned long flags,
  			       void *tinfo)
  {
  	struct keystone_rio_dma_chan *chan = from_dma_chan(dchan);
  	struct keystone_rio_dma_desc *desc = NULL;
  	struct keystone_rio_dma_desc *first = NULL;
  	struct rio_dma_ext *rext = (struct rio_dma_ext *)tinfo;
  	u64 rio_addr = rext->rio_addr; /* limited to 64-bit for now */
  	struct scatterlist *sg;
  	u32 packet_type, last_packet_type;
  	unsigned int i;
  
  	if (!sgl || !sg_len) {
  		dev_err(chan_dev(chan), "%s: no SG list
  ", __func__);
  		return NULL;
  	}
  
  	if (sg_len > KEYSTONE_RIO_DMA_MAX_DESC) {
  		dev_err(chan_dev(chan), "%s: SG list is too long (%d)
  ",
  			__func__, sg_len);
  		return NULL;
  	}
  
  	if (dir == DMA_DEV_TO_MEM) {
  		packet_type      = KEYSTONE_RIO_PACKET_TYPE_NREAD;
  		last_packet_type = KEYSTONE_RIO_PACKET_TYPE_NREAD;
  	} else if (dir == DMA_MEM_TO_DEV) {
  		switch (rext->wr_type) {
  		case RDW_DEFAULT:
  		case RDW_ALL_NWRITE:
  			packet_type      = KEYSTONE_RIO_PACKET_TYPE_NWRITE;
  			last_packet_type = KEYSTONE_RIO_PACKET_TYPE_NWRITE;
  			break;
  		case RDW_LAST_NWRITE_R:
  			packet_type      = KEYSTONE_RIO_PACKET_TYPE_NWRITE;
  			last_packet_type = KEYSTONE_RIO_PACKET_TYPE_NWRITE_R;
  			break;
  		case RDW_ALL_NWRITE_R:
  		default:
  			packet_type      = KEYSTONE_RIO_PACKET_TYPE_NWRITE_R;
  			last_packet_type = KEYSTONE_RIO_PACKET_TYPE_NWRITE_R;
  			break;
  		}
  	} else {
  		dev_err(chan_dev(chan),	"unsupported DMA direction option
  ");
  		return NULL;
  	}
  
  	for_each_sg(sgl, sg, sg_len, i) {
  		/* Allocate a (virtual) DMA descriptor for this transfer */
  		desc = kmalloc(sizeof(*desc), GFP_KERNEL);
  		if (unlikely(!desc)) {
  			dev_err(chan_dev(chan),
  				"cannot allocate DMA transfer descriptor
  ");
  			return NULL;
  		}
  
  		dma_async_tx_descriptor_init(&desc->adesc, dchan);
  		desc->adesc.tx_submit = keystone_rio_dma_tx_submit;
  		desc->adesc.flags = DMA_CTRL_ACK;
  
  		/* Fill the descriptor with the RapidIO information */
  		desc->retry_count = KEYSTONE_RIO_RETRY_CNT;
  		desc->status      = DMA_COMPLETE;
  		desc->port_id     = dma_to_mport(dchan->device)->index;
  		desc->dest_id     = rext->destid;
  		desc->rio_addr    = rio_addr;
  		desc->rio_addr_u  = 0;
  		desc->buff_addr   = sg_dma_address(sg);
  		desc->size        = sg_dma_len(sg);
  		desc->sys_size    = dma_to_mport(dchan->device)->sys_size;
  
  		INIT_LIST_HEAD(&desc->node);
  		INIT_LIST_HEAD(&desc->tx_list);
  
  		if (sg_is_last(sg)) {
  			desc->last  = true;
  			packet_type = last_packet_type;
  		} else {
  			desc->last = false;
  		}
  
  		/* Check if we can switch to SWRITE */
  		if ((packet_type == KEYSTONE_RIO_PACKET_TYPE_NWRITE) &&
  		    ((desc->size & 0x7) == 0) &&
  		    ((desc->rio_addr & 0x7) == 0) &&
  		    ((desc->buff_addr & 0x7) == 0)) {
  			packet_type = KEYSTONE_RIO_PACKET_TYPE_SWRITE;
  		}
  
  		desc->packet_type = packet_type;
  
  		rio_addr += sg_dma_len(sg);
  
  		if (!first)
  			first = desc;
  		else
  			list_add_tail(&desc->tx_list, &first->tx_list);
  	}
  
  	first->adesc.cookie = -EBUSY;
  	desc->adesc.flags  |= flags;
  
  	return &first->adesc;
  }
  
  int keystone_rio_dma_prep_raw_packet(
  	struct dma_chan *dchan,
  	struct keystone_rio_dma_packet_raw *pkt)
  {
  	struct keystone_rio_dma_chan *chan = from_dma_chan(dchan);
  	struct keystone_rio_dma_desc *desc;
  
  	/* Allocate a (virtual) DMA descriptor for this transfer */
  	desc = kmalloc(sizeof(*desc), GFP_KERNEL);
  	if (unlikely(!desc)) {
  		dev_err(chan_dev(chan),
  			"cannot allocate DMA transfer descriptor
  ");
  		return -ENOMEM;
  	}
  
  	dma_async_tx_descriptor_init(&desc->adesc, dchan);
  	desc->adesc.tx_submit = keystone_rio_dma_tx_submit;
  	desc->adesc.flags     = DMA_CTRL_ACK | DMA_PREP_INTERRUPT;
  	desc->adesc.cookie    = -EBUSY;
  
  	/* Fill the descriptor with the RapidIO raw packet information */
  	desc->retry_count = KEYSTONE_RIO_RETRY_CNT;
  	desc->status      = DMA_COMPLETE;
  	desc->port_id     = pkt->port_id;
  	desc->dest_id     = pkt->dest_id;
  	desc->rio_addr    = pkt->rio_addr;
  	desc->rio_addr_u  = pkt->rio_addr_u;
  	desc->buff_addr   = pkt->buff_addr;
  	desc->size        = pkt->size;
  	desc->sys_size    = pkt->sys_size;
  	desc->packet_type = pkt->packet_type;
  	desc->last        = true;
  	desc->lsu_context = 0;
  
  	INIT_LIST_HEAD(&desc->node);
  	INIT_LIST_HEAD(&desc->tx_list);
  
  	pkt->tx = &desc->adesc;
  
  	return 0;
  }
  
  static int keystone_rio_dma_terminate_all(struct dma_chan *dchan)
  {
  	struct keystone_rio_dma_chan *chan = from_dma_chan(dchan);
  	LIST_HEAD(list);
  
  	/* Stop the current transfers */
  	spin_lock_bh(&chan->lock);
  	list_splice_init(&chan->active_list, &list);
  	list_splice_init(&chan->queue, &list);
  	chan->current_transfer = NULL;
  	spin_unlock_bh(&chan->lock);
  
  	keystone_rio_dma_chan_force_state(chan, RIO_CHAN_STATE_ACTIVE);
  
  	/* Complete all transfers */
  	keystone_rio_dma_complete(chan, &list, 1);
  
  	return 0;
  }
  
  static int keystone_rio_dma_device_pause(struct dma_chan *dchan)
  {
  	struct keystone_rio_dma_chan *chan = from_dma_chan(dchan);
  
  	tasklet_disable(&chan->tasklet);
  
  	return 0;
  }
  
  static int keystone_rio_dma_device_resume(struct dma_chan *dchan)
  {
  	struct keystone_rio_dma_chan *chan = from_dma_chan(dchan);
  
  	tasklet_enable(&chan->tasklet);
  
  	return 0;
  }
  
  int keystone_rio_dma_register(struct rio_mport *mport, int channel_num)
  {
  	struct keystone_rio_data *krio_priv = mport->priv;
  	u32 c;
  	int ret;
  
  	if (channel_num > KEYSTONE_RIO_DMA_MAX_CHANNEL)
  		return -EINVAL;
  
  	if (channel_num == 0)
  		return 0;
  
  	mport->dma.dev = krio_priv->dev;
  	mport->dma.chancnt = channel_num < 0 ?
  		KEYSTONE_RIO_DMA_MAX_CHANNEL : channel_num;
  
  	INIT_LIST_HEAD(&mport->dma.channels);
  
  	for (c = 0; c < mport->dma.chancnt; c++) {
  		struct keystone_rio_dma_chan *chan =
  			kzalloc(sizeof(struct keystone_rio_dma_chan),
  				GFP_KERNEL);
  
  		if (!chan) {
  			dev_err(krio_priv->dev,
  				"failed to allocate channel
  ");
  			return -ENOMEM;
  		}
  
  		chan->dchan.device  = &mport->dma;
  		chan->dchan.cookie  = 1;
  		chan->dchan.chan_id = c;
  
  		spin_lock_init(&chan->lock);
  
  		INIT_LIST_HEAD(&chan->active_list);
  		INIT_LIST_HEAD(&chan->queue);
  
  		tasklet_init(&chan->tasklet,
  			     keystone_rio_dma_tasklet,
  			     (u32)chan);
  		tasklet_disable(&chan->tasklet);
  		list_add_tail(&chan->dchan.device_node, &mport->dma.channels);
  
  		chan->krio = krio_priv;
  
  		/* Allocate one LSU per channel */
  		chan->lsu = keystone_rio_lsu_alloc(chan->krio);
  
  		keystone_rio_dma_chan_force_state(chan, RIO_CHAN_STATE_UNUSED);
  
  		list_add_tail(&chan->node,
  			      &krio_priv->dma_channels[chan->lsu]);
  
  		dev_info(krio_priv->dev,
  			 "registering DMA channel %d (0x%p) using lsu %d for port %d
  ",
  			 c, chan, chan->lsu, mport->index);
  	}
  
  	dma_cap_zero(mport->dma.cap_mask);
  	dma_cap_set(DMA_PRIVATE, mport->dma.cap_mask);
  	dma_cap_set(DMA_SLAVE, mport->dma.cap_mask);
  
  	mport->dma.device_alloc_chan_resources =
  		keystone_rio_dma_alloc_chan_resources;
  	mport->dma.device_free_chan_resources =
  		keystone_rio_dma_free_chan_resources;
  	mport->dma.device_tx_status =
  		keystone_rio_dma_tx_status;
  	mport->dma.device_issue_pending =
  		keystone_rio_dma_issue_pending;
  	mport->dma.device_prep_slave_sg =
  		keystone_rio_dma_prep_slave_sg;
  	mport->dma.device_terminate_all =
  		keystone_rio_dma_terminate_all;
  	mport->dma.device_pause =
  		keystone_rio_dma_device_pause;
  	mport->dma.device_resume =
  		keystone_rio_dma_device_resume;
  
  	ret = dma_async_device_register(&mport->dma);
  	if (ret)
  		dev_err(krio_priv->dev, "failed to register DMA device
  ");
  
  	dev_dbg(mport->dma.dev, "%s: dma device registered
  ", __func__);
  
  	return ret;
  }
  
  void keystone_rio_dma_unregister(struct rio_mport *mport)
  {
  	dma_async_device_unregister(&mport->dma);
  
  	dev_dbg(mport->dma.dev, "%s: dma device unregistered
  ", __func__);
  }