2 * offload engine driver for the Intel Xscale series of i/o processors
3 * Copyright © 2006, Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
21 * This driver supports the asynchrounous DMA copy and RAID engines available
22 * on the Intel Xscale(R) family of I/O Processors (IOP 32x, 33x, 134x)
25 #include <linux/init.h>
26 #include <linux/module.h>
27 #include <linux/async_tx.h>
28 #include <linux/delay.h>
29 #include <linux/dma-mapping.h>
30 #include <linux/spinlock.h>
31 #include <linux/interrupt.h>
32 #include <linux/platform_device.h>
33 #include <linux/memory.h>
34 #include <linux/ioport.h>
36 #include <asm/arch/adma.h>
38 #define to_iop_adma_chan(chan) container_of(chan, struct iop_adma_chan, common)
39 #define to_iop_adma_device(dev) \
40 container_of(dev, struct iop_adma_device, common)
41 #define tx_to_iop_adma_slot(tx) \
42 container_of(tx, struct iop_adma_desc_slot, async_tx)
45 * iop_adma_free_slots - flags descriptor slots for reuse
47 * Caller must hold &iop_chan->lock while calling this function
49 static void iop_adma_free_slots(struct iop_adma_desc_slot
*slot
)
51 int stride
= slot
->slots_per_op
;
54 slot
->slots_per_op
= 0;
55 slot
= list_entry(slot
->slot_node
.next
,
56 struct iop_adma_desc_slot
,
62 iop_adma_run_tx_complete_actions(struct iop_adma_desc_slot
*desc
,
63 struct iop_adma_chan
*iop_chan
, dma_cookie_t cookie
)
65 BUG_ON(desc
->async_tx
.cookie
< 0);
66 if (desc
->async_tx
.cookie
> 0) {
67 cookie
= desc
->async_tx
.cookie
;
68 desc
->async_tx
.cookie
= 0;
70 /* call the callback (must not sleep or submit new
71 * operations to this channel)
73 if (desc
->async_tx
.callback
)
74 desc
->async_tx
.callback(
75 desc
->async_tx
.callback_param
);
77 /* unmap dma addresses
78 * (unmap_single vs unmap_page?)
80 if (desc
->group_head
&& desc
->unmap_len
) {
81 struct iop_adma_desc_slot
*unmap
= desc
->group_head
;
83 &iop_chan
->device
->pdev
->dev
;
84 u32 len
= unmap
->unmap_len
;
85 u32 src_cnt
= unmap
->unmap_src_cnt
;
86 dma_addr_t addr
= iop_desc_get_dest_addr(unmap
,
89 dma_unmap_page(dev
, addr
, len
, DMA_FROM_DEVICE
);
91 addr
= iop_desc_get_src_addr(unmap
,
94 dma_unmap_page(dev
, addr
, len
,
97 desc
->group_head
= NULL
;
101 /* run dependent operations */
102 async_tx_run_dependencies(&desc
->async_tx
);
108 iop_adma_clean_slot(struct iop_adma_desc_slot
*desc
,
109 struct iop_adma_chan
*iop_chan
)
111 /* the client is allowed to attach dependent operations
114 if (!desc
->async_tx
.ack
)
117 /* leave the last descriptor in the chain
118 * so we can append to it
120 if (desc
->chain_node
.next
== &iop_chan
->chain
)
123 dev_dbg(iop_chan
->device
->common
.dev
,
124 "\tfree slot: %d slots_per_op: %d\n",
125 desc
->idx
, desc
->slots_per_op
);
127 list_del(&desc
->chain_node
);
128 iop_adma_free_slots(desc
);
133 static void __iop_adma_slot_cleanup(struct iop_adma_chan
*iop_chan
)
135 struct iop_adma_desc_slot
*iter
, *_iter
, *grp_start
= NULL
;
136 dma_cookie_t cookie
= 0;
137 u32 current_desc
= iop_chan_get_current_descriptor(iop_chan
);
138 int busy
= iop_chan_is_busy(iop_chan
);
139 int seen_current
= 0, slot_cnt
= 0, slots_per_op
= 0;
141 dev_dbg(iop_chan
->device
->common
.dev
, "%s\n", __func__
);
142 /* free completed slots from the chain starting with
143 * the oldest descriptor
145 list_for_each_entry_safe(iter
, _iter
, &iop_chan
->chain
,
147 pr_debug("\tcookie: %d slot: %d busy: %d "
148 "this_desc: %#x next_desc: %#x ack: %d\n",
149 iter
->async_tx
.cookie
, iter
->idx
, busy
,
150 iter
->async_tx
.phys
, iop_desc_get_next_desc(iter
),
153 prefetch(&_iter
->async_tx
);
155 /* do not advance past the current descriptor loaded into the
156 * hardware channel, subsequent descriptors are either in
157 * process or have not been submitted
162 /* stop the search if we reach the current descriptor and the
163 * channel is busy, or if it appears that the current descriptor
164 * needs to be re-read (i.e. has been appended to)
166 if (iter
->async_tx
.phys
== current_desc
) {
167 BUG_ON(seen_current
++);
168 if (busy
|| iop_desc_get_next_desc(iter
))
172 /* detect the start of a group transaction */
173 if (!slot_cnt
&& !slots_per_op
) {
174 slot_cnt
= iter
->slot_cnt
;
175 slots_per_op
= iter
->slots_per_op
;
176 if (slot_cnt
<= slots_per_op
) {
183 pr_debug("\tgroup++\n");
186 slot_cnt
-= slots_per_op
;
189 /* all the members of a group are complete */
190 if (slots_per_op
!= 0 && slot_cnt
== 0) {
191 struct iop_adma_desc_slot
*grp_iter
, *_grp_iter
;
192 int end_of_chain
= 0;
193 pr_debug("\tgroup end\n");
195 /* collect the total results */
196 if (grp_start
->xor_check_result
) {
197 u32 zero_sum_result
= 0;
198 slot_cnt
= grp_start
->slot_cnt
;
199 grp_iter
= grp_start
;
201 list_for_each_entry_from(grp_iter
,
202 &iop_chan
->chain
, chain_node
) {
204 iop_desc_get_zero_result(grp_iter
);
205 pr_debug("\titer%d result: %d\n",
206 grp_iter
->idx
, zero_sum_result
);
207 slot_cnt
-= slots_per_op
;
211 pr_debug("\tgrp_start->xor_check_result: %p\n",
212 grp_start
->xor_check_result
);
213 *grp_start
->xor_check_result
= zero_sum_result
;
216 /* clean up the group */
217 slot_cnt
= grp_start
->slot_cnt
;
218 grp_iter
= grp_start
;
219 list_for_each_entry_safe_from(grp_iter
, _grp_iter
,
220 &iop_chan
->chain
, chain_node
) {
221 cookie
= iop_adma_run_tx_complete_actions(
222 grp_iter
, iop_chan
, cookie
);
224 slot_cnt
-= slots_per_op
;
225 end_of_chain
= iop_adma_clean_slot(grp_iter
,
228 if (slot_cnt
== 0 || end_of_chain
)
232 /* the group should be complete at this point */
241 } else if (slots_per_op
) /* wait for group completion */
244 /* write back zero sum results (single descriptor case) */
245 if (iter
->xor_check_result
&& iter
->async_tx
.cookie
)
246 *iter
->xor_check_result
=
247 iop_desc_get_zero_result(iter
);
249 cookie
= iop_adma_run_tx_complete_actions(
250 iter
, iop_chan
, cookie
);
252 if (iop_adma_clean_slot(iter
, iop_chan
))
256 BUG_ON(!seen_current
);
258 iop_chan_idle(busy
, iop_chan
);
261 iop_chan
->completed_cookie
= cookie
;
262 pr_debug("\tcompleted cookie %d\n", cookie
);
267 iop_adma_slot_cleanup(struct iop_adma_chan
*iop_chan
)
269 spin_lock_bh(&iop_chan
->lock
);
270 __iop_adma_slot_cleanup(iop_chan
);
271 spin_unlock_bh(&iop_chan
->lock
);
274 static void iop_adma_tasklet(unsigned long data
)
276 struct iop_adma_chan
*iop_chan
= (struct iop_adma_chan
*) data
;
278 spin_lock(&iop_chan
->lock
);
279 __iop_adma_slot_cleanup(iop_chan
);
280 spin_unlock(&iop_chan
->lock
);
283 static struct iop_adma_desc_slot
*
284 iop_adma_alloc_slots(struct iop_adma_chan
*iop_chan
, int num_slots
,
287 struct iop_adma_desc_slot
*iter
, *_iter
, *alloc_start
= NULL
;
289 int slots_found
, retry
= 0;
291 /* start search from the last allocated descrtiptor
292 * if a contiguous allocation can not be found start searching
293 * from the beginning of the list
298 iter
= iop_chan
->last_used
;
300 iter
= list_entry(&iop_chan
->all_slots
,
301 struct iop_adma_desc_slot
,
304 list_for_each_entry_safe_continue(
305 iter
, _iter
, &iop_chan
->all_slots
, slot_node
) {
307 prefetch(&_iter
->async_tx
);
308 if (iter
->slots_per_op
) {
309 /* give up after finding the first busy slot
310 * on the second pass through the list
319 /* start the allocation if the slot is correctly aligned */
320 if (!slots_found
++) {
321 if (iop_desc_is_aligned(iter
, slots_per_op
))
329 if (slots_found
== num_slots
) {
330 struct iop_adma_desc_slot
*alloc_tail
= NULL
;
331 struct iop_adma_desc_slot
*last_used
= NULL
;
335 dev_dbg(iop_chan
->device
->common
.dev
,
336 "allocated slot: %d "
337 "(desc %p phys: %#x) slots_per_op %d\n",
338 iter
->idx
, iter
->hw_desc
,
339 iter
->async_tx
.phys
, slots_per_op
);
341 /* pre-ack all but the last descriptor */
342 if (num_slots
!= slots_per_op
)
343 iter
->async_tx
.ack
= 1;
345 iter
->async_tx
.ack
= 0;
347 list_add_tail(&iter
->chain_node
, &chain
);
349 iter
->async_tx
.cookie
= 0;
350 iter
->slot_cnt
= num_slots
;
351 iter
->xor_check_result
= NULL
;
352 for (i
= 0; i
< slots_per_op
; i
++) {
353 iter
->slots_per_op
= slots_per_op
- i
;
355 iter
= list_entry(iter
->slot_node
.next
,
356 struct iop_adma_desc_slot
,
359 num_slots
-= slots_per_op
;
361 alloc_tail
->group_head
= alloc_start
;
362 alloc_tail
->async_tx
.cookie
= -EBUSY
;
363 list_splice(&chain
, &alloc_tail
->async_tx
.tx_list
);
364 iop_chan
->last_used
= last_used
;
365 iop_desc_clear_next_desc(alloc_start
);
366 iop_desc_clear_next_desc(alloc_tail
);
373 /* try to free some slots if the allocation fails */
374 tasklet_schedule(&iop_chan
->irq_tasklet
);
380 iop_desc_assign_cookie(struct iop_adma_chan
*iop_chan
,
381 struct iop_adma_desc_slot
*desc
)
383 dma_cookie_t cookie
= iop_chan
->common
.cookie
;
387 iop_chan
->common
.cookie
= desc
->async_tx
.cookie
= cookie
;
391 static void iop_adma_check_threshold(struct iop_adma_chan
*iop_chan
)
393 dev_dbg(iop_chan
->device
->common
.dev
, "pending: %d\n",
396 if (iop_chan
->pending
>= IOP_ADMA_THRESHOLD
) {
397 iop_chan
->pending
= 0;
398 iop_chan_append(iop_chan
);
403 iop_adma_tx_submit(struct dma_async_tx_descriptor
*tx
)
405 struct iop_adma_desc_slot
*sw_desc
= tx_to_iop_adma_slot(tx
);
406 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(tx
->chan
);
407 struct iop_adma_desc_slot
*grp_start
, *old_chain_tail
;
412 grp_start
= sw_desc
->group_head
;
413 slot_cnt
= grp_start
->slot_cnt
;
414 slots_per_op
= grp_start
->slots_per_op
;
416 spin_lock_bh(&iop_chan
->lock
);
417 cookie
= iop_desc_assign_cookie(iop_chan
, sw_desc
);
419 old_chain_tail
= list_entry(iop_chan
->chain
.prev
,
420 struct iop_adma_desc_slot
, chain_node
);
421 list_splice_init(&sw_desc
->async_tx
.tx_list
,
422 &old_chain_tail
->chain_node
);
424 /* fix up the hardware chain */
425 iop_desc_set_next_desc(old_chain_tail
, grp_start
->async_tx
.phys
);
427 /* 1/ don't add pre-chained descriptors
428 * 2/ dummy read to flush next_desc write
430 BUG_ON(iop_desc_get_next_desc(sw_desc
));
432 /* increment the pending count by the number of slots
433 * memcpy operations have a 1:1 (slot:operation) relation
434 * other operations are heavier and will pop the threshold
437 iop_chan
->pending
+= slot_cnt
;
438 iop_adma_check_threshold(iop_chan
);
439 spin_unlock_bh(&iop_chan
->lock
);
441 dev_dbg(iop_chan
->device
->common
.dev
, "%s cookie: %d slot: %d\n",
442 __func__
, sw_desc
->async_tx
.cookie
, sw_desc
->idx
);
447 static void iop_chan_start_null_memcpy(struct iop_adma_chan
*iop_chan
);
448 static void iop_chan_start_null_xor(struct iop_adma_chan
*iop_chan
);
450 /* returns the number of allocated descriptors */
451 static int iop_adma_alloc_chan_resources(struct dma_chan
*chan
)
455 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
456 struct iop_adma_desc_slot
*slot
= NULL
;
457 int init
= iop_chan
->slots_allocated
? 0 : 1;
458 struct iop_adma_platform_data
*plat_data
=
459 iop_chan
->device
->pdev
->dev
.platform_data
;
460 int num_descs_in_pool
= plat_data
->pool_size
/IOP_ADMA_SLOT_SIZE
;
462 /* Allocate descriptor slots */
464 idx
= iop_chan
->slots_allocated
;
465 if (idx
== num_descs_in_pool
)
468 slot
= kzalloc(sizeof(*slot
), GFP_KERNEL
);
470 printk(KERN_INFO
"IOP ADMA Channel only initialized"
471 " %d descriptor slots", idx
);
474 hw_desc
= (char *) iop_chan
->device
->dma_desc_pool_virt
;
475 slot
->hw_desc
= (void *) &hw_desc
[idx
* IOP_ADMA_SLOT_SIZE
];
477 dma_async_tx_descriptor_init(&slot
->async_tx
, chan
);
478 slot
->async_tx
.tx_submit
= iop_adma_tx_submit
;
479 INIT_LIST_HEAD(&slot
->chain_node
);
480 INIT_LIST_HEAD(&slot
->slot_node
);
481 INIT_LIST_HEAD(&slot
->async_tx
.tx_list
);
482 hw_desc
= (char *) iop_chan
->device
->dma_desc_pool
;
483 slot
->async_tx
.phys
=
484 (dma_addr_t
) &hw_desc
[idx
* IOP_ADMA_SLOT_SIZE
];
487 spin_lock_bh(&iop_chan
->lock
);
488 iop_chan
->slots_allocated
++;
489 list_add_tail(&slot
->slot_node
, &iop_chan
->all_slots
);
490 spin_unlock_bh(&iop_chan
->lock
);
491 } while (iop_chan
->slots_allocated
< num_descs_in_pool
);
493 if (idx
&& !iop_chan
->last_used
)
494 iop_chan
->last_used
= list_entry(iop_chan
->all_slots
.next
,
495 struct iop_adma_desc_slot
,
498 dev_dbg(iop_chan
->device
->common
.dev
,
499 "allocated %d descriptor slots last_used: %p\n",
500 iop_chan
->slots_allocated
, iop_chan
->last_used
);
502 /* initialize the channel and the chain with a null operation */
504 if (dma_has_cap(DMA_MEMCPY
,
505 iop_chan
->device
->common
.cap_mask
))
506 iop_chan_start_null_memcpy(iop_chan
);
507 else if (dma_has_cap(DMA_XOR
,
508 iop_chan
->device
->common
.cap_mask
))
509 iop_chan_start_null_xor(iop_chan
);
514 return (idx
> 0) ? idx
: -ENOMEM
;
517 static struct dma_async_tx_descriptor
*
518 iop_adma_prep_dma_interrupt(struct dma_chan
*chan
)
520 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
521 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
522 int slot_cnt
, slots_per_op
;
524 dev_dbg(iop_chan
->device
->common
.dev
, "%s\n", __func__
);
526 spin_lock_bh(&iop_chan
->lock
);
527 slot_cnt
= iop_chan_interrupt_slot_count(&slots_per_op
, iop_chan
);
528 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
530 grp_start
= sw_desc
->group_head
;
531 iop_desc_init_interrupt(grp_start
, iop_chan
);
532 grp_start
->unmap_len
= 0;
534 spin_unlock_bh(&iop_chan
->lock
);
536 return sw_desc
? &sw_desc
->async_tx
: NULL
;
539 static struct dma_async_tx_descriptor
*
540 iop_adma_prep_dma_memcpy(struct dma_chan
*chan
, dma_addr_t dma_dest
,
541 dma_addr_t dma_src
, size_t len
, unsigned long flags
)
543 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
544 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
545 int slot_cnt
, slots_per_op
;
549 BUG_ON(unlikely(len
> IOP_ADMA_MAX_BYTE_COUNT
));
551 dev_dbg(iop_chan
->device
->common
.dev
, "%s len: %u\n",
554 spin_lock_bh(&iop_chan
->lock
);
555 slot_cnt
= iop_chan_memcpy_slot_count(len
, &slots_per_op
);
556 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
558 grp_start
= sw_desc
->group_head
;
559 iop_desc_init_memcpy(grp_start
, flags
);
560 iop_desc_set_byte_count(grp_start
, iop_chan
, len
);
561 iop_desc_set_dest_addr(grp_start
, iop_chan
, dma_dest
);
562 iop_desc_set_memcpy_src_addr(grp_start
, dma_src
);
563 sw_desc
->unmap_src_cnt
= 1;
564 sw_desc
->unmap_len
= len
;
566 spin_unlock_bh(&iop_chan
->lock
);
568 return sw_desc
? &sw_desc
->async_tx
: NULL
;
571 static struct dma_async_tx_descriptor
*
572 iop_adma_prep_dma_memset(struct dma_chan
*chan
, dma_addr_t dma_dest
,
573 int value
, size_t len
, unsigned long flags
)
575 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
576 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
577 int slot_cnt
, slots_per_op
;
581 BUG_ON(unlikely(len
> IOP_ADMA_MAX_BYTE_COUNT
));
583 dev_dbg(iop_chan
->device
->common
.dev
, "%s len: %u\n",
586 spin_lock_bh(&iop_chan
->lock
);
587 slot_cnt
= iop_chan_memset_slot_count(len
, &slots_per_op
);
588 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
590 grp_start
= sw_desc
->group_head
;
591 iop_desc_init_memset(grp_start
, flags
);
592 iop_desc_set_byte_count(grp_start
, iop_chan
, len
);
593 iop_desc_set_block_fill_val(grp_start
, value
);
594 iop_desc_set_dest_addr(grp_start
, iop_chan
, dma_dest
);
595 sw_desc
->unmap_src_cnt
= 1;
596 sw_desc
->unmap_len
= len
;
598 spin_unlock_bh(&iop_chan
->lock
);
600 return sw_desc
? &sw_desc
->async_tx
: NULL
;
603 static struct dma_async_tx_descriptor
*
604 iop_adma_prep_dma_xor(struct dma_chan
*chan
, dma_addr_t dma_dest
,
605 dma_addr_t
*dma_src
, unsigned int src_cnt
, size_t len
,
608 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
609 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
610 int slot_cnt
, slots_per_op
;
614 BUG_ON(unlikely(len
> IOP_ADMA_XOR_MAX_BYTE_COUNT
));
616 dev_dbg(iop_chan
->device
->common
.dev
,
617 "%s src_cnt: %d len: %u flags: %lx\n",
618 __func__
, src_cnt
, len
, flags
);
620 spin_lock_bh(&iop_chan
->lock
);
621 slot_cnt
= iop_chan_xor_slot_count(len
, src_cnt
, &slots_per_op
);
622 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
624 grp_start
= sw_desc
->group_head
;
625 iop_desc_init_xor(grp_start
, src_cnt
, flags
);
626 iop_desc_set_byte_count(grp_start
, iop_chan
, len
);
627 iop_desc_set_dest_addr(grp_start
, iop_chan
, dma_dest
);
628 sw_desc
->unmap_src_cnt
= src_cnt
;
629 sw_desc
->unmap_len
= len
;
631 iop_desc_set_xor_src_addr(grp_start
, src_cnt
,
634 spin_unlock_bh(&iop_chan
->lock
);
636 return sw_desc
? &sw_desc
->async_tx
: NULL
;
639 static struct dma_async_tx_descriptor
*
640 iop_adma_prep_dma_zero_sum(struct dma_chan
*chan
, dma_addr_t
*dma_src
,
641 unsigned int src_cnt
, size_t len
, u32
*result
,
644 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
645 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
646 int slot_cnt
, slots_per_op
;
651 dev_dbg(iop_chan
->device
->common
.dev
, "%s src_cnt: %d len: %u\n",
652 __func__
, src_cnt
, len
);
654 spin_lock_bh(&iop_chan
->lock
);
655 slot_cnt
= iop_chan_zero_sum_slot_count(len
, src_cnt
, &slots_per_op
);
656 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
658 grp_start
= sw_desc
->group_head
;
659 iop_desc_init_zero_sum(grp_start
, src_cnt
, flags
);
660 iop_desc_set_zero_sum_byte_count(grp_start
, len
);
661 grp_start
->xor_check_result
= result
;
662 pr_debug("\t%s: grp_start->xor_check_result: %p\n",
663 __func__
, grp_start
->xor_check_result
);
664 sw_desc
->unmap_src_cnt
= src_cnt
;
665 sw_desc
->unmap_len
= len
;
667 iop_desc_set_zero_sum_src_addr(grp_start
, src_cnt
,
670 spin_unlock_bh(&iop_chan
->lock
);
672 return sw_desc
? &sw_desc
->async_tx
: NULL
;
675 static void iop_adma_free_chan_resources(struct dma_chan
*chan
)
677 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
678 struct iop_adma_desc_slot
*iter
, *_iter
;
679 int in_use_descs
= 0;
681 iop_adma_slot_cleanup(iop_chan
);
683 spin_lock_bh(&iop_chan
->lock
);
684 list_for_each_entry_safe(iter
, _iter
, &iop_chan
->chain
,
687 list_del(&iter
->chain_node
);
689 list_for_each_entry_safe_reverse(
690 iter
, _iter
, &iop_chan
->all_slots
, slot_node
) {
691 list_del(&iter
->slot_node
);
693 iop_chan
->slots_allocated
--;
695 iop_chan
->last_used
= NULL
;
697 dev_dbg(iop_chan
->device
->common
.dev
, "%s slots_allocated %d\n",
698 __func__
, iop_chan
->slots_allocated
);
699 spin_unlock_bh(&iop_chan
->lock
);
701 /* one is ok since we left it on there on purpose */
702 if (in_use_descs
> 1)
703 printk(KERN_ERR
"IOP: Freeing %d in use descriptors!\n",
708 * iop_adma_is_complete - poll the status of an ADMA transaction
709 * @chan: ADMA channel handle
710 * @cookie: ADMA transaction identifier
712 static enum dma_status
iop_adma_is_complete(struct dma_chan
*chan
,
717 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
718 dma_cookie_t last_used
;
719 dma_cookie_t last_complete
;
722 last_used
= chan
->cookie
;
723 last_complete
= iop_chan
->completed_cookie
;
726 *done
= last_complete
;
730 ret
= dma_async_is_complete(cookie
, last_complete
, last_used
);
731 if (ret
== DMA_SUCCESS
)
734 iop_adma_slot_cleanup(iop_chan
);
736 last_used
= chan
->cookie
;
737 last_complete
= iop_chan
->completed_cookie
;
740 *done
= last_complete
;
744 return dma_async_is_complete(cookie
, last_complete
, last_used
);
747 static irqreturn_t
iop_adma_eot_handler(int irq
, void *data
)
749 struct iop_adma_chan
*chan
= data
;
751 dev_dbg(chan
->device
->common
.dev
, "%s\n", __func__
);
753 tasklet_schedule(&chan
->irq_tasklet
);
755 iop_adma_device_clear_eot_status(chan
);
760 static irqreturn_t
iop_adma_eoc_handler(int irq
, void *data
)
762 struct iop_adma_chan
*chan
= data
;
764 dev_dbg(chan
->device
->common
.dev
, "%s\n", __func__
);
766 tasklet_schedule(&chan
->irq_tasklet
);
768 iop_adma_device_clear_eoc_status(chan
);
773 static irqreturn_t
iop_adma_err_handler(int irq
, void *data
)
775 struct iop_adma_chan
*chan
= data
;
776 unsigned long status
= iop_chan_get_status(chan
);
778 dev_printk(KERN_ERR
, chan
->device
->common
.dev
,
779 "error ( %s%s%s%s%s%s%s)\n",
780 iop_is_err_int_parity(status
, chan
) ? "int_parity " : "",
781 iop_is_err_mcu_abort(status
, chan
) ? "mcu_abort " : "",
782 iop_is_err_int_tabort(status
, chan
) ? "int_tabort " : "",
783 iop_is_err_int_mabort(status
, chan
) ? "int_mabort " : "",
784 iop_is_err_pci_tabort(status
, chan
) ? "pci_tabort " : "",
785 iop_is_err_pci_mabort(status
, chan
) ? "pci_mabort " : "",
786 iop_is_err_split_tx(status
, chan
) ? "split_tx " : "");
788 iop_adma_device_clear_err_status(chan
);
795 static void iop_adma_issue_pending(struct dma_chan
*chan
)
797 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
799 if (iop_chan
->pending
) {
800 iop_chan
->pending
= 0;
801 iop_chan_append(iop_chan
);
806 * Perform a transaction to verify the HW works.
808 #define IOP_ADMA_TEST_SIZE 2000
810 static int __devinit
iop_adma_memcpy_self_test(struct iop_adma_device
*device
)
814 dma_addr_t src_dma
, dest_dma
;
815 struct dma_chan
*dma_chan
;
817 struct dma_async_tx_descriptor
*tx
;
819 struct iop_adma_chan
*iop_chan
;
821 dev_dbg(device
->common
.dev
, "%s\n", __func__
);
823 src
= kzalloc(sizeof(u8
) * IOP_ADMA_TEST_SIZE
, GFP_KERNEL
);
826 dest
= kzalloc(sizeof(u8
) * IOP_ADMA_TEST_SIZE
, GFP_KERNEL
);
832 /* Fill in src buffer */
833 for (i
= 0; i
< IOP_ADMA_TEST_SIZE
; i
++)
834 ((u8
*) src
)[i
] = (u8
)i
;
836 memset(dest
, 0, IOP_ADMA_TEST_SIZE
);
838 /* Start copy, using first DMA channel */
839 dma_chan
= container_of(device
->common
.channels
.next
,
842 if (iop_adma_alloc_chan_resources(dma_chan
) < 1) {
847 dest_dma
= dma_map_single(dma_chan
->device
->dev
, dest
,
848 IOP_ADMA_TEST_SIZE
, DMA_FROM_DEVICE
);
849 src_dma
= dma_map_single(dma_chan
->device
->dev
, src
,
850 IOP_ADMA_TEST_SIZE
, DMA_TO_DEVICE
);
851 tx
= iop_adma_prep_dma_memcpy(dma_chan
, dest_dma
, src_dma
,
852 IOP_ADMA_TEST_SIZE
, 1);
854 cookie
= iop_adma_tx_submit(tx
);
855 iop_adma_issue_pending(dma_chan
);
859 if (iop_adma_is_complete(dma_chan
, cookie
, NULL
, NULL
) !=
861 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
862 "Self-test copy timed out, disabling\n");
867 iop_chan
= to_iop_adma_chan(dma_chan
);
868 dma_sync_single_for_cpu(&iop_chan
->device
->pdev
->dev
, dest_dma
,
869 IOP_ADMA_TEST_SIZE
, DMA_FROM_DEVICE
);
870 if (memcmp(src
, dest
, IOP_ADMA_TEST_SIZE
)) {
871 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
872 "Self-test copy failed compare, disabling\n");
878 iop_adma_free_chan_resources(dma_chan
);
885 #define IOP_ADMA_NUM_SRC_TEST 4 /* must be <= 15 */
887 iop_adma_xor_zero_sum_self_test(struct iop_adma_device
*device
)
891 struct page
*xor_srcs
[IOP_ADMA_NUM_SRC_TEST
];
892 struct page
*zero_sum_srcs
[IOP_ADMA_NUM_SRC_TEST
+ 1];
893 dma_addr_t dma_srcs
[IOP_ADMA_NUM_SRC_TEST
+ 1];
894 dma_addr_t dma_addr
, dest_dma
;
895 struct dma_async_tx_descriptor
*tx
;
896 struct dma_chan
*dma_chan
;
902 struct iop_adma_chan
*iop_chan
;
904 dev_dbg(device
->common
.dev
, "%s\n", __func__
);
906 for (src_idx
= 0; src_idx
< IOP_ADMA_NUM_SRC_TEST
; src_idx
++) {
907 xor_srcs
[src_idx
] = alloc_page(GFP_KERNEL
);
908 if (!xor_srcs
[src_idx
])
910 __free_page(xor_srcs
[src_idx
]);
915 dest
= alloc_page(GFP_KERNEL
);
918 __free_page(xor_srcs
[src_idx
]);
922 /* Fill in src buffers */
923 for (src_idx
= 0; src_idx
< IOP_ADMA_NUM_SRC_TEST
; src_idx
++) {
924 u8
*ptr
= page_address(xor_srcs
[src_idx
]);
925 for (i
= 0; i
< PAGE_SIZE
; i
++)
926 ptr
[i
] = (1 << src_idx
);
929 for (src_idx
= 0; src_idx
< IOP_ADMA_NUM_SRC_TEST
; src_idx
++)
930 cmp_byte
^= (u8
) (1 << src_idx
);
932 cmp_word
= (cmp_byte
<< 24) | (cmp_byte
<< 16) |
933 (cmp_byte
<< 8) | cmp_byte
;
935 memset(page_address(dest
), 0, PAGE_SIZE
);
937 dma_chan
= container_of(device
->common
.channels
.next
,
940 if (iop_adma_alloc_chan_resources(dma_chan
) < 1) {
946 dest_dma
= dma_map_page(dma_chan
->device
->dev
, dest
, 0,
947 PAGE_SIZE
, DMA_FROM_DEVICE
);
948 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
; i
++)
949 dma_srcs
[i
] = dma_map_page(dma_chan
->device
->dev
, xor_srcs
[i
],
950 0, PAGE_SIZE
, DMA_TO_DEVICE
);
951 tx
= iop_adma_prep_dma_xor(dma_chan
, dest_dma
, dma_srcs
,
952 IOP_ADMA_NUM_SRC_TEST
, PAGE_SIZE
, 1);
954 cookie
= iop_adma_tx_submit(tx
);
955 iop_adma_issue_pending(dma_chan
);
959 if (iop_adma_is_complete(dma_chan
, cookie
, NULL
, NULL
) !=
961 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
962 "Self-test xor timed out, disabling\n");
967 iop_chan
= to_iop_adma_chan(dma_chan
);
968 dma_sync_single_for_cpu(&iop_chan
->device
->pdev
->dev
, dest_dma
,
969 PAGE_SIZE
, DMA_FROM_DEVICE
);
970 for (i
= 0; i
< (PAGE_SIZE
/ sizeof(u32
)); i
++) {
971 u32
*ptr
= page_address(dest
);
972 if (ptr
[i
] != cmp_word
) {
973 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
974 "Self-test xor failed compare, disabling\n");
979 dma_sync_single_for_device(&iop_chan
->device
->pdev
->dev
, dest_dma
,
980 PAGE_SIZE
, DMA_TO_DEVICE
);
982 /* skip zero sum if the capability is not present */
983 if (!dma_has_cap(DMA_ZERO_SUM
, dma_chan
->device
->cap_mask
))
986 /* zero sum the sources with the destintation page */
987 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
; i
++)
988 zero_sum_srcs
[i
] = xor_srcs
[i
];
989 zero_sum_srcs
[i
] = dest
;
993 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
+ 1; i
++)
994 dma_srcs
[i
] = dma_map_page(dma_chan
->device
->dev
,
995 zero_sum_srcs
[i
], 0, PAGE_SIZE
,
997 tx
= iop_adma_prep_dma_zero_sum(dma_chan
, dma_srcs
,
998 IOP_ADMA_NUM_SRC_TEST
+ 1, PAGE_SIZE
,
999 &zero_sum_result
, 1);
1001 cookie
= iop_adma_tx_submit(tx
);
1002 iop_adma_issue_pending(dma_chan
);
1006 if (iop_adma_is_complete(dma_chan
, cookie
, NULL
, NULL
) != DMA_SUCCESS
) {
1007 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
1008 "Self-test zero sum timed out, disabling\n");
1010 goto free_resources
;
1013 if (zero_sum_result
!= 0) {
1014 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
1015 "Self-test zero sum failed compare, disabling\n");
1017 goto free_resources
;
1021 dma_addr
= dma_map_page(dma_chan
->device
->dev
, dest
, 0,
1022 PAGE_SIZE
, DMA_FROM_DEVICE
);
1023 tx
= iop_adma_prep_dma_memset(dma_chan
, dma_addr
, 0, PAGE_SIZE
, 1);
1025 cookie
= iop_adma_tx_submit(tx
);
1026 iop_adma_issue_pending(dma_chan
);
1030 if (iop_adma_is_complete(dma_chan
, cookie
, NULL
, NULL
) != DMA_SUCCESS
) {
1031 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
1032 "Self-test memset timed out, disabling\n");
1034 goto free_resources
;
1037 for (i
= 0; i
< PAGE_SIZE
/sizeof(u32
); i
++) {
1038 u32
*ptr
= page_address(dest
);
1040 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
1041 "Self-test memset failed compare, disabling\n");
1043 goto free_resources
;
1047 /* test for non-zero parity sum */
1048 zero_sum_result
= 0;
1049 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
+ 1; i
++)
1050 dma_srcs
[i
] = dma_map_page(dma_chan
->device
->dev
,
1051 zero_sum_srcs
[i
], 0, PAGE_SIZE
,
1053 tx
= iop_adma_prep_dma_zero_sum(dma_chan
, dma_srcs
,
1054 IOP_ADMA_NUM_SRC_TEST
+ 1, PAGE_SIZE
,
1055 &zero_sum_result
, 1);
1057 cookie
= iop_adma_tx_submit(tx
);
1058 iop_adma_issue_pending(dma_chan
);
1062 if (iop_adma_is_complete(dma_chan
, cookie
, NULL
, NULL
) != DMA_SUCCESS
) {
1063 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
1064 "Self-test non-zero sum timed out, disabling\n");
1066 goto free_resources
;
1069 if (zero_sum_result
!= 1) {
1070 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
1071 "Self-test non-zero sum failed compare, disabling\n");
1073 goto free_resources
;
1077 iop_adma_free_chan_resources(dma_chan
);
1079 src_idx
= IOP_ADMA_NUM_SRC_TEST
;
1081 __free_page(xor_srcs
[src_idx
]);
1086 static int __devexit
iop_adma_remove(struct platform_device
*dev
)
1088 struct iop_adma_device
*device
= platform_get_drvdata(dev
);
1089 struct dma_chan
*chan
, *_chan
;
1090 struct iop_adma_chan
*iop_chan
;
1092 struct iop_adma_platform_data
*plat_data
= dev
->dev
.platform_data
;
1094 dma_async_device_unregister(&device
->common
);
1096 for (i
= 0; i
< 3; i
++) {
1098 irq
= platform_get_irq(dev
, i
);
1099 free_irq(irq
, device
);
1102 dma_free_coherent(&dev
->dev
, plat_data
->pool_size
,
1103 device
->dma_desc_pool_virt
, device
->dma_desc_pool
);
1106 struct resource
*res
;
1107 res
= platform_get_resource(dev
, IORESOURCE_MEM
, 0);
1108 release_mem_region(res
->start
, res
->end
- res
->start
);
1111 list_for_each_entry_safe(chan
, _chan
, &device
->common
.channels
,
1113 iop_chan
= to_iop_adma_chan(chan
);
1114 list_del(&chan
->device_node
);
1122 static int __devinit
iop_adma_probe(struct platform_device
*pdev
)
1124 struct resource
*res
;
1126 struct iop_adma_device
*adev
;
1127 struct iop_adma_chan
*iop_chan
;
1128 struct dma_device
*dma_dev
;
1129 struct iop_adma_platform_data
*plat_data
= pdev
->dev
.platform_data
;
1131 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1135 if (!devm_request_mem_region(&pdev
->dev
, res
->start
,
1136 res
->end
- res
->start
, pdev
->name
))
1139 adev
= kzalloc(sizeof(*adev
), GFP_KERNEL
);
1142 dma_dev
= &adev
->common
;
1144 /* allocate coherent memory for hardware descriptors
1145 * note: writecombine gives slightly better performance, but
1146 * requires that we explicitly flush the writes
1148 if ((adev
->dma_desc_pool_virt
= dma_alloc_writecombine(&pdev
->dev
,
1149 plat_data
->pool_size
,
1150 &adev
->dma_desc_pool
,
1151 GFP_KERNEL
)) == NULL
) {
1156 dev_dbg(&pdev
->dev
, "%s: allocted descriptor pool virt %p phys %p\n",
1157 __func__
, adev
->dma_desc_pool_virt
,
1158 (void *) adev
->dma_desc_pool
);
1160 adev
->id
= plat_data
->hw_id
;
1162 /* discover transaction capabilites from the platform data */
1163 dma_dev
->cap_mask
= plat_data
->cap_mask
;
1166 platform_set_drvdata(pdev
, adev
);
1168 INIT_LIST_HEAD(&dma_dev
->channels
);
1170 /* set base routines */
1171 dma_dev
->device_alloc_chan_resources
= iop_adma_alloc_chan_resources
;
1172 dma_dev
->device_free_chan_resources
= iop_adma_free_chan_resources
;
1173 dma_dev
->device_is_tx_complete
= iop_adma_is_complete
;
1174 dma_dev
->device_issue_pending
= iop_adma_issue_pending
;
1175 dma_dev
->dev
= &pdev
->dev
;
1177 /* set prep routines based on capability */
1178 if (dma_has_cap(DMA_MEMCPY
, dma_dev
->cap_mask
))
1179 dma_dev
->device_prep_dma_memcpy
= iop_adma_prep_dma_memcpy
;
1180 if (dma_has_cap(DMA_MEMSET
, dma_dev
->cap_mask
))
1181 dma_dev
->device_prep_dma_memset
= iop_adma_prep_dma_memset
;
1182 if (dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
)) {
1183 dma_dev
->max_xor
= iop_adma_get_max_xor();
1184 dma_dev
->device_prep_dma_xor
= iop_adma_prep_dma_xor
;
1186 if (dma_has_cap(DMA_ZERO_SUM
, dma_dev
->cap_mask
))
1187 dma_dev
->device_prep_dma_zero_sum
=
1188 iop_adma_prep_dma_zero_sum
;
1189 if (dma_has_cap(DMA_INTERRUPT
, dma_dev
->cap_mask
))
1190 dma_dev
->device_prep_dma_interrupt
=
1191 iop_adma_prep_dma_interrupt
;
1193 iop_chan
= kzalloc(sizeof(*iop_chan
), GFP_KERNEL
);
1198 iop_chan
->device
= adev
;
1200 iop_chan
->mmr_base
= devm_ioremap(&pdev
->dev
, res
->start
,
1201 res
->end
- res
->start
);
1202 if (!iop_chan
->mmr_base
) {
1204 goto err_free_iop_chan
;
1206 tasklet_init(&iop_chan
->irq_tasklet
, iop_adma_tasklet
, (unsigned long)
1209 /* clear errors before enabling interrupts */
1210 iop_adma_device_clear_err_status(iop_chan
);
1212 for (i
= 0; i
< 3; i
++) {
1213 irq_handler_t handler
[] = { iop_adma_eot_handler
,
1214 iop_adma_eoc_handler
,
1215 iop_adma_err_handler
};
1216 int irq
= platform_get_irq(pdev
, i
);
1219 goto err_free_iop_chan
;
1221 ret
= devm_request_irq(&pdev
->dev
, irq
,
1222 handler
[i
], 0, pdev
->name
, iop_chan
);
1224 goto err_free_iop_chan
;
1228 spin_lock_init(&iop_chan
->lock
);
1229 init_timer(&iop_chan
->cleanup_watchdog
);
1230 iop_chan
->cleanup_watchdog
.data
= (unsigned long) iop_chan
;
1231 iop_chan
->cleanup_watchdog
.function
= iop_adma_tasklet
;
1232 INIT_LIST_HEAD(&iop_chan
->chain
);
1233 INIT_LIST_HEAD(&iop_chan
->all_slots
);
1234 INIT_RCU_HEAD(&iop_chan
->common
.rcu
);
1235 iop_chan
->common
.device
= dma_dev
;
1236 list_add_tail(&iop_chan
->common
.device_node
, &dma_dev
->channels
);
1238 if (dma_has_cap(DMA_MEMCPY
, dma_dev
->cap_mask
)) {
1239 ret
= iop_adma_memcpy_self_test(adev
);
1240 dev_dbg(&pdev
->dev
, "memcpy self test returned %d\n", ret
);
1242 goto err_free_iop_chan
;
1245 if (dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
) ||
1246 dma_has_cap(DMA_MEMSET
, dma_dev
->cap_mask
)) {
1247 ret
= iop_adma_xor_zero_sum_self_test(adev
);
1248 dev_dbg(&pdev
->dev
, "xor self test returned %d\n", ret
);
1250 goto err_free_iop_chan
;
1253 dev_printk(KERN_INFO
, &pdev
->dev
, "Intel(R) IOP: "
1254 "( %s%s%s%s%s%s%s%s%s%s)\n",
1255 dma_has_cap(DMA_PQ_XOR
, dma_dev
->cap_mask
) ? "pq_xor " : "",
1256 dma_has_cap(DMA_PQ_UPDATE
, dma_dev
->cap_mask
) ? "pq_update " : "",
1257 dma_has_cap(DMA_PQ_ZERO_SUM
, dma_dev
->cap_mask
) ? "pq_zero_sum " : "",
1258 dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
) ? "xor " : "",
1259 dma_has_cap(DMA_DUAL_XOR
, dma_dev
->cap_mask
) ? "dual_xor " : "",
1260 dma_has_cap(DMA_ZERO_SUM
, dma_dev
->cap_mask
) ? "xor_zero_sum " : "",
1261 dma_has_cap(DMA_MEMSET
, dma_dev
->cap_mask
) ? "fill " : "",
1262 dma_has_cap(DMA_MEMCPY_CRC32C
, dma_dev
->cap_mask
) ? "cpy+crc " : "",
1263 dma_has_cap(DMA_MEMCPY
, dma_dev
->cap_mask
) ? "cpy " : "",
1264 dma_has_cap(DMA_INTERRUPT
, dma_dev
->cap_mask
) ? "intr " : "");
1266 dma_async_device_register(dma_dev
);
1272 dma_free_coherent(&adev
->pdev
->dev
, plat_data
->pool_size
,
1273 adev
->dma_desc_pool_virt
, adev
->dma_desc_pool
);
1280 static void iop_chan_start_null_memcpy(struct iop_adma_chan
*iop_chan
)
1282 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
1283 dma_cookie_t cookie
;
1284 int slot_cnt
, slots_per_op
;
1286 dev_dbg(iop_chan
->device
->common
.dev
, "%s\n", __func__
);
1288 spin_lock_bh(&iop_chan
->lock
);
1289 slot_cnt
= iop_chan_memcpy_slot_count(0, &slots_per_op
);
1290 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
1292 grp_start
= sw_desc
->group_head
;
1294 list_splice_init(&sw_desc
->async_tx
.tx_list
, &iop_chan
->chain
);
1295 sw_desc
->async_tx
.ack
= 1;
1296 iop_desc_init_memcpy(grp_start
, 0);
1297 iop_desc_set_byte_count(grp_start
, iop_chan
, 0);
1298 iop_desc_set_dest_addr(grp_start
, iop_chan
, 0);
1299 iop_desc_set_memcpy_src_addr(grp_start
, 0);
1301 cookie
= iop_chan
->common
.cookie
;
1306 /* initialize the completed cookie to be less than
1307 * the most recently used cookie
1309 iop_chan
->completed_cookie
= cookie
- 1;
1310 iop_chan
->common
.cookie
= sw_desc
->async_tx
.cookie
= cookie
;
1312 /* channel should not be busy */
1313 BUG_ON(iop_chan_is_busy(iop_chan
));
1315 /* clear any prior error-status bits */
1316 iop_adma_device_clear_err_status(iop_chan
);
1318 /* disable operation */
1319 iop_chan_disable(iop_chan
);
1321 /* set the descriptor address */
1322 iop_chan_set_next_descriptor(iop_chan
, sw_desc
->async_tx
.phys
);
1324 /* 1/ don't add pre-chained descriptors
1325 * 2/ dummy read to flush next_desc write
1327 BUG_ON(iop_desc_get_next_desc(sw_desc
));
1329 /* run the descriptor */
1330 iop_chan_enable(iop_chan
);
1332 dev_printk(KERN_ERR
, iop_chan
->device
->common
.dev
,
1333 "failed to allocate null descriptor\n");
1334 spin_unlock_bh(&iop_chan
->lock
);
1337 static void iop_chan_start_null_xor(struct iop_adma_chan
*iop_chan
)
1339 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
1340 dma_cookie_t cookie
;
1341 int slot_cnt
, slots_per_op
;
1343 dev_dbg(iop_chan
->device
->common
.dev
, "%s\n", __func__
);
1345 spin_lock_bh(&iop_chan
->lock
);
1346 slot_cnt
= iop_chan_xor_slot_count(0, 2, &slots_per_op
);
1347 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
1349 grp_start
= sw_desc
->group_head
;
1350 list_splice_init(&sw_desc
->async_tx
.tx_list
, &iop_chan
->chain
);
1351 sw_desc
->async_tx
.ack
= 1;
1352 iop_desc_init_null_xor(grp_start
, 2, 0);
1353 iop_desc_set_byte_count(grp_start
, iop_chan
, 0);
1354 iop_desc_set_dest_addr(grp_start
, iop_chan
, 0);
1355 iop_desc_set_xor_src_addr(grp_start
, 0, 0);
1356 iop_desc_set_xor_src_addr(grp_start
, 1, 0);
1358 cookie
= iop_chan
->common
.cookie
;
1363 /* initialize the completed cookie to be less than
1364 * the most recently used cookie
1366 iop_chan
->completed_cookie
= cookie
- 1;
1367 iop_chan
->common
.cookie
= sw_desc
->async_tx
.cookie
= cookie
;
1369 /* channel should not be busy */
1370 BUG_ON(iop_chan_is_busy(iop_chan
));
1372 /* clear any prior error-status bits */
1373 iop_adma_device_clear_err_status(iop_chan
);
1375 /* disable operation */
1376 iop_chan_disable(iop_chan
);
1378 /* set the descriptor address */
1379 iop_chan_set_next_descriptor(iop_chan
, sw_desc
->async_tx
.phys
);
1381 /* 1/ don't add pre-chained descriptors
1382 * 2/ dummy read to flush next_desc write
1384 BUG_ON(iop_desc_get_next_desc(sw_desc
));
1386 /* run the descriptor */
1387 iop_chan_enable(iop_chan
);
1389 dev_printk(KERN_ERR
, iop_chan
->device
->common
.dev
,
1390 "failed to allocate null descriptor\n");
1391 spin_unlock_bh(&iop_chan
->lock
);
1394 static struct platform_driver iop_adma_driver
= {
1395 .probe
= iop_adma_probe
,
1396 .remove
= iop_adma_remove
,
1398 .owner
= THIS_MODULE
,
1403 static int __init
iop_adma_init (void)
1405 return platform_driver_register(&iop_adma_driver
);
1408 /* it's currently unsafe to unload this module */
1410 static void __exit
iop_adma_exit (void)
1412 platform_driver_unregister(&iop_adma_driver
);
1415 module_exit(iop_adma_exit
);
1418 module_init(iop_adma_init
);
1420 MODULE_AUTHOR("Intel Corporation");
1421 MODULE_DESCRIPTION("IOP ADMA Engine Driver");
1422 MODULE_LICENSE("GPL");