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/delay.h>
28 #include <linux/dma-mapping.h>
29 #include <linux/spinlock.h>
30 #include <linux/interrupt.h>
31 #include <linux/platform_device.h>
32 #include <linux/memory.h>
33 #include <linux/ioport.h>
34 #include <linux/raid/pq.h>
35 #include <linux/slab.h>
37 #include <mach/adma.h>
39 #define to_iop_adma_chan(chan) container_of(chan, struct iop_adma_chan, common)
40 #define to_iop_adma_device(dev) \
41 container_of(dev, struct iop_adma_device, common)
42 #define tx_to_iop_adma_slot(tx) \
43 container_of(tx, struct iop_adma_desc_slot, async_tx)
46 * iop_adma_free_slots - flags descriptor slots for reuse
48 * Caller must hold &iop_chan->lock while calling this function
50 static void iop_adma_free_slots(struct iop_adma_desc_slot
*slot
)
52 int stride
= slot
->slots_per_op
;
55 slot
->slots_per_op
= 0;
56 slot
= list_entry(slot
->slot_node
.next
,
57 struct iop_adma_desc_slot
,
63 iop_desc_unmap(struct iop_adma_chan
*iop_chan
, struct iop_adma_desc_slot
*desc
)
65 struct dma_async_tx_descriptor
*tx
= &desc
->async_tx
;
66 struct iop_adma_desc_slot
*unmap
= desc
->group_head
;
67 struct device
*dev
= &iop_chan
->device
->pdev
->dev
;
68 u32 len
= unmap
->unmap_len
;
69 enum dma_ctrl_flags flags
= tx
->flags
;
74 src_cnt
= unmap
->unmap_src_cnt
;
75 dest
= iop_desc_get_dest_addr(unmap
, iop_chan
);
76 if (!(flags
& DMA_COMPL_SKIP_DEST_UNMAP
)) {
77 enum dma_data_direction dir
;
79 if (src_cnt
> 1) /* is xor? */
80 dir
= DMA_BIDIRECTIONAL
;
82 dir
= DMA_FROM_DEVICE
;
84 dma_unmap_page(dev
, dest
, len
, dir
);
87 if (!(flags
& DMA_COMPL_SKIP_SRC_UNMAP
)) {
89 addr
= iop_desc_get_src_addr(unmap
, iop_chan
, src_cnt
);
92 dma_unmap_page(dev
, addr
, len
, DMA_TO_DEVICE
);
95 desc
->group_head
= NULL
;
99 iop_desc_unmap_pq(struct iop_adma_chan
*iop_chan
, struct iop_adma_desc_slot
*desc
)
101 struct dma_async_tx_descriptor
*tx
= &desc
->async_tx
;
102 struct iop_adma_desc_slot
*unmap
= desc
->group_head
;
103 struct device
*dev
= &iop_chan
->device
->pdev
->dev
;
104 u32 len
= unmap
->unmap_len
;
105 enum dma_ctrl_flags flags
= tx
->flags
;
106 u32 src_cnt
= unmap
->unmap_src_cnt
;
107 dma_addr_t pdest
= iop_desc_get_dest_addr(unmap
, iop_chan
);
108 dma_addr_t qdest
= iop_desc_get_qdest_addr(unmap
, iop_chan
);
111 if (tx
->flags
& DMA_PREP_CONTINUE
)
114 if (!(flags
& DMA_COMPL_SKIP_DEST_UNMAP
) && !desc
->pq_check_result
) {
115 dma_unmap_page(dev
, pdest
, len
, DMA_BIDIRECTIONAL
);
116 dma_unmap_page(dev
, qdest
, len
, DMA_BIDIRECTIONAL
);
119 if (!(flags
& DMA_COMPL_SKIP_SRC_UNMAP
)) {
122 for (i
= 0; i
< src_cnt
; i
++) {
123 addr
= iop_desc_get_src_addr(unmap
, iop_chan
, i
);
124 dma_unmap_page(dev
, addr
, len
, DMA_TO_DEVICE
);
126 if (desc
->pq_check_result
) {
127 dma_unmap_page(dev
, pdest
, len
, DMA_TO_DEVICE
);
128 dma_unmap_page(dev
, qdest
, len
, DMA_TO_DEVICE
);
132 desc
->group_head
= NULL
;
137 iop_adma_run_tx_complete_actions(struct iop_adma_desc_slot
*desc
,
138 struct iop_adma_chan
*iop_chan
, dma_cookie_t cookie
)
140 struct dma_async_tx_descriptor
*tx
= &desc
->async_tx
;
142 BUG_ON(tx
->cookie
< 0);
143 if (tx
->cookie
> 0) {
147 /* call the callback (must not sleep or submit new
148 * operations to this channel)
151 tx
->callback(tx
->callback_param
);
153 /* unmap dma addresses
154 * (unmap_single vs unmap_page?)
156 if (desc
->group_head
&& desc
->unmap_len
) {
157 if (iop_desc_is_pq(desc
))
158 iop_desc_unmap_pq(iop_chan
, desc
);
160 iop_desc_unmap(iop_chan
, desc
);
164 /* run dependent operations */
165 dma_run_dependencies(tx
);
171 iop_adma_clean_slot(struct iop_adma_desc_slot
*desc
,
172 struct iop_adma_chan
*iop_chan
)
174 /* the client is allowed to attach dependent operations
177 if (!async_tx_test_ack(&desc
->async_tx
))
180 /* leave the last descriptor in the chain
181 * so we can append to it
183 if (desc
->chain_node
.next
== &iop_chan
->chain
)
186 dev_dbg(iop_chan
->device
->common
.dev
,
187 "\tfree slot: %d slots_per_op: %d\n",
188 desc
->idx
, desc
->slots_per_op
);
190 list_del(&desc
->chain_node
);
191 iop_adma_free_slots(desc
);
196 static void __iop_adma_slot_cleanup(struct iop_adma_chan
*iop_chan
)
198 struct iop_adma_desc_slot
*iter
, *_iter
, *grp_start
= NULL
;
199 dma_cookie_t cookie
= 0;
200 u32 current_desc
= iop_chan_get_current_descriptor(iop_chan
);
201 int busy
= iop_chan_is_busy(iop_chan
);
202 int seen_current
= 0, slot_cnt
= 0, slots_per_op
= 0;
204 dev_dbg(iop_chan
->device
->common
.dev
, "%s\n", __func__
);
205 /* free completed slots from the chain starting with
206 * the oldest descriptor
208 list_for_each_entry_safe(iter
, _iter
, &iop_chan
->chain
,
210 pr_debug("\tcookie: %d slot: %d busy: %d "
211 "this_desc: %#x next_desc: %#x ack: %d\n",
212 iter
->async_tx
.cookie
, iter
->idx
, busy
,
213 iter
->async_tx
.phys
, iop_desc_get_next_desc(iter
),
214 async_tx_test_ack(&iter
->async_tx
));
216 prefetch(&_iter
->async_tx
);
218 /* do not advance past the current descriptor loaded into the
219 * hardware channel, subsequent descriptors are either in
220 * process or have not been submitted
225 /* stop the search if we reach the current descriptor and the
226 * channel is busy, or if it appears that the current descriptor
227 * needs to be re-read (i.e. has been appended to)
229 if (iter
->async_tx
.phys
== current_desc
) {
230 BUG_ON(seen_current
++);
231 if (busy
|| iop_desc_get_next_desc(iter
))
235 /* detect the start of a group transaction */
236 if (!slot_cnt
&& !slots_per_op
) {
237 slot_cnt
= iter
->slot_cnt
;
238 slots_per_op
= iter
->slots_per_op
;
239 if (slot_cnt
<= slots_per_op
) {
246 pr_debug("\tgroup++\n");
249 slot_cnt
-= slots_per_op
;
252 /* all the members of a group are complete */
253 if (slots_per_op
!= 0 && slot_cnt
== 0) {
254 struct iop_adma_desc_slot
*grp_iter
, *_grp_iter
;
255 int end_of_chain
= 0;
256 pr_debug("\tgroup end\n");
258 /* collect the total results */
259 if (grp_start
->xor_check_result
) {
260 u32 zero_sum_result
= 0;
261 slot_cnt
= grp_start
->slot_cnt
;
262 grp_iter
= grp_start
;
264 list_for_each_entry_from(grp_iter
,
265 &iop_chan
->chain
, chain_node
) {
267 iop_desc_get_zero_result(grp_iter
);
268 pr_debug("\titer%d result: %d\n",
269 grp_iter
->idx
, zero_sum_result
);
270 slot_cnt
-= slots_per_op
;
274 pr_debug("\tgrp_start->xor_check_result: %p\n",
275 grp_start
->xor_check_result
);
276 *grp_start
->xor_check_result
= zero_sum_result
;
279 /* clean up the group */
280 slot_cnt
= grp_start
->slot_cnt
;
281 grp_iter
= grp_start
;
282 list_for_each_entry_safe_from(grp_iter
, _grp_iter
,
283 &iop_chan
->chain
, chain_node
) {
284 cookie
= iop_adma_run_tx_complete_actions(
285 grp_iter
, iop_chan
, cookie
);
287 slot_cnt
-= slots_per_op
;
288 end_of_chain
= iop_adma_clean_slot(grp_iter
,
291 if (slot_cnt
== 0 || end_of_chain
)
295 /* the group should be complete at this point */
304 } else if (slots_per_op
) /* wait for group completion */
307 /* write back zero sum results (single descriptor case) */
308 if (iter
->xor_check_result
&& iter
->async_tx
.cookie
)
309 *iter
->xor_check_result
=
310 iop_desc_get_zero_result(iter
);
312 cookie
= iop_adma_run_tx_complete_actions(
313 iter
, iop_chan
, cookie
);
315 if (iop_adma_clean_slot(iter
, iop_chan
))
320 iop_chan
->completed_cookie
= cookie
;
321 pr_debug("\tcompleted cookie %d\n", cookie
);
326 iop_adma_slot_cleanup(struct iop_adma_chan
*iop_chan
)
328 spin_lock_bh(&iop_chan
->lock
);
329 __iop_adma_slot_cleanup(iop_chan
);
330 spin_unlock_bh(&iop_chan
->lock
);
333 static void iop_adma_tasklet(unsigned long data
)
335 struct iop_adma_chan
*iop_chan
= (struct iop_adma_chan
*) data
;
337 /* lockdep will flag depedency submissions as potentially
338 * recursive locking, this is not the case as a dependency
339 * submission will never recurse a channels submit routine.
340 * There are checks in async_tx.c to prevent this.
342 spin_lock_nested(&iop_chan
->lock
, SINGLE_DEPTH_NESTING
);
343 __iop_adma_slot_cleanup(iop_chan
);
344 spin_unlock(&iop_chan
->lock
);
347 static struct iop_adma_desc_slot
*
348 iop_adma_alloc_slots(struct iop_adma_chan
*iop_chan
, int num_slots
,
351 struct iop_adma_desc_slot
*iter
, *_iter
, *alloc_start
= NULL
;
353 int slots_found
, retry
= 0;
355 /* start search from the last allocated descrtiptor
356 * if a contiguous allocation can not be found start searching
357 * from the beginning of the list
362 iter
= iop_chan
->last_used
;
364 iter
= list_entry(&iop_chan
->all_slots
,
365 struct iop_adma_desc_slot
,
368 list_for_each_entry_safe_continue(
369 iter
, _iter
, &iop_chan
->all_slots
, slot_node
) {
371 prefetch(&_iter
->async_tx
);
372 if (iter
->slots_per_op
) {
373 /* give up after finding the first busy slot
374 * on the second pass through the list
383 /* start the allocation if the slot is correctly aligned */
384 if (!slots_found
++) {
385 if (iop_desc_is_aligned(iter
, slots_per_op
))
393 if (slots_found
== num_slots
) {
394 struct iop_adma_desc_slot
*alloc_tail
= NULL
;
395 struct iop_adma_desc_slot
*last_used
= NULL
;
399 dev_dbg(iop_chan
->device
->common
.dev
,
400 "allocated slot: %d "
401 "(desc %p phys: %#x) slots_per_op %d\n",
402 iter
->idx
, iter
->hw_desc
,
403 iter
->async_tx
.phys
, slots_per_op
);
405 /* pre-ack all but the last descriptor */
406 if (num_slots
!= slots_per_op
)
407 async_tx_ack(&iter
->async_tx
);
409 list_add_tail(&iter
->chain_node
, &chain
);
411 iter
->async_tx
.cookie
= 0;
412 iter
->slot_cnt
= num_slots
;
413 iter
->xor_check_result
= NULL
;
414 for (i
= 0; i
< slots_per_op
; i
++) {
415 iter
->slots_per_op
= slots_per_op
- i
;
417 iter
= list_entry(iter
->slot_node
.next
,
418 struct iop_adma_desc_slot
,
421 num_slots
-= slots_per_op
;
423 alloc_tail
->group_head
= alloc_start
;
424 alloc_tail
->async_tx
.cookie
= -EBUSY
;
425 list_splice(&chain
, &alloc_tail
->tx_list
);
426 iop_chan
->last_used
= last_used
;
427 iop_desc_clear_next_desc(alloc_start
);
428 iop_desc_clear_next_desc(alloc_tail
);
435 /* perform direct reclaim if the allocation fails */
436 __iop_adma_slot_cleanup(iop_chan
);
442 iop_desc_assign_cookie(struct iop_adma_chan
*iop_chan
,
443 struct iop_adma_desc_slot
*desc
)
445 dma_cookie_t cookie
= iop_chan
->common
.cookie
;
449 iop_chan
->common
.cookie
= desc
->async_tx
.cookie
= cookie
;
453 static void iop_adma_check_threshold(struct iop_adma_chan
*iop_chan
)
455 dev_dbg(iop_chan
->device
->common
.dev
, "pending: %d\n",
458 if (iop_chan
->pending
>= IOP_ADMA_THRESHOLD
) {
459 iop_chan
->pending
= 0;
460 iop_chan_append(iop_chan
);
465 iop_adma_tx_submit(struct dma_async_tx_descriptor
*tx
)
467 struct iop_adma_desc_slot
*sw_desc
= tx_to_iop_adma_slot(tx
);
468 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(tx
->chan
);
469 struct iop_adma_desc_slot
*grp_start
, *old_chain_tail
;
475 grp_start
= sw_desc
->group_head
;
476 slot_cnt
= grp_start
->slot_cnt
;
477 slots_per_op
= grp_start
->slots_per_op
;
479 spin_lock_bh(&iop_chan
->lock
);
480 cookie
= iop_desc_assign_cookie(iop_chan
, sw_desc
);
482 old_chain_tail
= list_entry(iop_chan
->chain
.prev
,
483 struct iop_adma_desc_slot
, chain_node
);
484 list_splice_init(&sw_desc
->tx_list
,
485 &old_chain_tail
->chain_node
);
487 /* fix up the hardware chain */
488 next_dma
= grp_start
->async_tx
.phys
;
489 iop_desc_set_next_desc(old_chain_tail
, next_dma
);
490 BUG_ON(iop_desc_get_next_desc(old_chain_tail
) != next_dma
); /* flush */
492 /* check for pre-chained descriptors */
493 iop_paranoia(iop_desc_get_next_desc(sw_desc
));
495 /* increment the pending count by the number of slots
496 * memcpy operations have a 1:1 (slot:operation) relation
497 * other operations are heavier and will pop the threshold
500 iop_chan
->pending
+= slot_cnt
;
501 iop_adma_check_threshold(iop_chan
);
502 spin_unlock_bh(&iop_chan
->lock
);
504 dev_dbg(iop_chan
->device
->common
.dev
, "%s cookie: %d slot: %d\n",
505 __func__
, sw_desc
->async_tx
.cookie
, sw_desc
->idx
);
510 static void iop_chan_start_null_memcpy(struct iop_adma_chan
*iop_chan
);
511 static void iop_chan_start_null_xor(struct iop_adma_chan
*iop_chan
);
514 * iop_adma_alloc_chan_resources - returns the number of allocated descriptors
515 * @chan - allocate descriptor resources for this channel
516 * @client - current client requesting the channel be ready for requests
518 * Note: We keep the slots for 1 operation on iop_chan->chain at all times. To
519 * avoid deadlock, via async_xor, num_descs_in_pool must at a minimum be
520 * greater than 2x the number slots needed to satisfy a device->max_xor
523 static int iop_adma_alloc_chan_resources(struct dma_chan
*chan
)
527 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
528 struct iop_adma_desc_slot
*slot
= NULL
;
529 int init
= iop_chan
->slots_allocated
? 0 : 1;
530 struct iop_adma_platform_data
*plat_data
=
531 iop_chan
->device
->pdev
->dev
.platform_data
;
532 int num_descs_in_pool
= plat_data
->pool_size
/IOP_ADMA_SLOT_SIZE
;
534 /* Allocate descriptor slots */
536 idx
= iop_chan
->slots_allocated
;
537 if (idx
== num_descs_in_pool
)
540 slot
= kzalloc(sizeof(*slot
), GFP_KERNEL
);
542 printk(KERN_INFO
"IOP ADMA Channel only initialized"
543 " %d descriptor slots", idx
);
546 hw_desc
= (char *) iop_chan
->device
->dma_desc_pool_virt
;
547 slot
->hw_desc
= (void *) &hw_desc
[idx
* IOP_ADMA_SLOT_SIZE
];
549 dma_async_tx_descriptor_init(&slot
->async_tx
, chan
);
550 slot
->async_tx
.tx_submit
= iop_adma_tx_submit
;
551 INIT_LIST_HEAD(&slot
->tx_list
);
552 INIT_LIST_HEAD(&slot
->chain_node
);
553 INIT_LIST_HEAD(&slot
->slot_node
);
554 hw_desc
= (char *) iop_chan
->device
->dma_desc_pool
;
555 slot
->async_tx
.phys
=
556 (dma_addr_t
) &hw_desc
[idx
* IOP_ADMA_SLOT_SIZE
];
559 spin_lock_bh(&iop_chan
->lock
);
560 iop_chan
->slots_allocated
++;
561 list_add_tail(&slot
->slot_node
, &iop_chan
->all_slots
);
562 spin_unlock_bh(&iop_chan
->lock
);
563 } while (iop_chan
->slots_allocated
< num_descs_in_pool
);
565 if (idx
&& !iop_chan
->last_used
)
566 iop_chan
->last_used
= list_entry(iop_chan
->all_slots
.next
,
567 struct iop_adma_desc_slot
,
570 dev_dbg(iop_chan
->device
->common
.dev
,
571 "allocated %d descriptor slots last_used: %p\n",
572 iop_chan
->slots_allocated
, iop_chan
->last_used
);
574 /* initialize the channel and the chain with a null operation */
576 if (dma_has_cap(DMA_MEMCPY
,
577 iop_chan
->device
->common
.cap_mask
))
578 iop_chan_start_null_memcpy(iop_chan
);
579 else if (dma_has_cap(DMA_XOR
,
580 iop_chan
->device
->common
.cap_mask
))
581 iop_chan_start_null_xor(iop_chan
);
586 return (idx
> 0) ? idx
: -ENOMEM
;
589 static struct dma_async_tx_descriptor
*
590 iop_adma_prep_dma_interrupt(struct dma_chan
*chan
, unsigned long flags
)
592 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
593 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
594 int slot_cnt
, slots_per_op
;
596 dev_dbg(iop_chan
->device
->common
.dev
, "%s\n", __func__
);
598 spin_lock_bh(&iop_chan
->lock
);
599 slot_cnt
= iop_chan_interrupt_slot_count(&slots_per_op
, iop_chan
);
600 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
602 grp_start
= sw_desc
->group_head
;
603 iop_desc_init_interrupt(grp_start
, iop_chan
);
604 grp_start
->unmap_len
= 0;
605 sw_desc
->async_tx
.flags
= flags
;
607 spin_unlock_bh(&iop_chan
->lock
);
609 return sw_desc
? &sw_desc
->async_tx
: NULL
;
612 static struct dma_async_tx_descriptor
*
613 iop_adma_prep_dma_memcpy(struct dma_chan
*chan
, dma_addr_t dma_dest
,
614 dma_addr_t dma_src
, size_t len
, unsigned long flags
)
616 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
617 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
618 int slot_cnt
, slots_per_op
;
622 BUG_ON(len
> IOP_ADMA_MAX_BYTE_COUNT
);
624 dev_dbg(iop_chan
->device
->common
.dev
, "%s len: %u\n",
627 spin_lock_bh(&iop_chan
->lock
);
628 slot_cnt
= iop_chan_memcpy_slot_count(len
, &slots_per_op
);
629 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
631 grp_start
= sw_desc
->group_head
;
632 iop_desc_init_memcpy(grp_start
, flags
);
633 iop_desc_set_byte_count(grp_start
, iop_chan
, len
);
634 iop_desc_set_dest_addr(grp_start
, iop_chan
, dma_dest
);
635 iop_desc_set_memcpy_src_addr(grp_start
, dma_src
);
636 sw_desc
->unmap_src_cnt
= 1;
637 sw_desc
->unmap_len
= len
;
638 sw_desc
->async_tx
.flags
= flags
;
640 spin_unlock_bh(&iop_chan
->lock
);
642 return sw_desc
? &sw_desc
->async_tx
: NULL
;
645 static struct dma_async_tx_descriptor
*
646 iop_adma_prep_dma_memset(struct dma_chan
*chan
, dma_addr_t dma_dest
,
647 int value
, size_t len
, unsigned long flags
)
649 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
650 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
651 int slot_cnt
, slots_per_op
;
655 BUG_ON(len
> IOP_ADMA_MAX_BYTE_COUNT
);
657 dev_dbg(iop_chan
->device
->common
.dev
, "%s len: %u\n",
660 spin_lock_bh(&iop_chan
->lock
);
661 slot_cnt
= iop_chan_memset_slot_count(len
, &slots_per_op
);
662 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
664 grp_start
= sw_desc
->group_head
;
665 iop_desc_init_memset(grp_start
, flags
);
666 iop_desc_set_byte_count(grp_start
, iop_chan
, len
);
667 iop_desc_set_block_fill_val(grp_start
, value
);
668 iop_desc_set_dest_addr(grp_start
, iop_chan
, dma_dest
);
669 sw_desc
->unmap_src_cnt
= 1;
670 sw_desc
->unmap_len
= len
;
671 sw_desc
->async_tx
.flags
= flags
;
673 spin_unlock_bh(&iop_chan
->lock
);
675 return sw_desc
? &sw_desc
->async_tx
: NULL
;
678 static struct dma_async_tx_descriptor
*
679 iop_adma_prep_dma_xor(struct dma_chan
*chan
, dma_addr_t dma_dest
,
680 dma_addr_t
*dma_src
, unsigned int src_cnt
, size_t len
,
683 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
684 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
685 int slot_cnt
, slots_per_op
;
689 BUG_ON(len
> IOP_ADMA_XOR_MAX_BYTE_COUNT
);
691 dev_dbg(iop_chan
->device
->common
.dev
,
692 "%s src_cnt: %d len: %u flags: %lx\n",
693 __func__
, src_cnt
, len
, flags
);
695 spin_lock_bh(&iop_chan
->lock
);
696 slot_cnt
= iop_chan_xor_slot_count(len
, src_cnt
, &slots_per_op
);
697 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
699 grp_start
= sw_desc
->group_head
;
700 iop_desc_init_xor(grp_start
, src_cnt
, flags
);
701 iop_desc_set_byte_count(grp_start
, iop_chan
, len
);
702 iop_desc_set_dest_addr(grp_start
, iop_chan
, dma_dest
);
703 sw_desc
->unmap_src_cnt
= src_cnt
;
704 sw_desc
->unmap_len
= len
;
705 sw_desc
->async_tx
.flags
= flags
;
707 iop_desc_set_xor_src_addr(grp_start
, src_cnt
,
710 spin_unlock_bh(&iop_chan
->lock
);
712 return sw_desc
? &sw_desc
->async_tx
: NULL
;
715 static struct dma_async_tx_descriptor
*
716 iop_adma_prep_dma_xor_val(struct dma_chan
*chan
, dma_addr_t
*dma_src
,
717 unsigned int src_cnt
, size_t len
, u32
*result
,
720 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
721 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
722 int slot_cnt
, slots_per_op
;
727 dev_dbg(iop_chan
->device
->common
.dev
, "%s src_cnt: %d len: %u\n",
728 __func__
, src_cnt
, len
);
730 spin_lock_bh(&iop_chan
->lock
);
731 slot_cnt
= iop_chan_zero_sum_slot_count(len
, src_cnt
, &slots_per_op
);
732 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
734 grp_start
= sw_desc
->group_head
;
735 iop_desc_init_zero_sum(grp_start
, src_cnt
, flags
);
736 iop_desc_set_zero_sum_byte_count(grp_start
, len
);
737 grp_start
->xor_check_result
= result
;
738 pr_debug("\t%s: grp_start->xor_check_result: %p\n",
739 __func__
, grp_start
->xor_check_result
);
740 sw_desc
->unmap_src_cnt
= src_cnt
;
741 sw_desc
->unmap_len
= len
;
742 sw_desc
->async_tx
.flags
= flags
;
744 iop_desc_set_zero_sum_src_addr(grp_start
, src_cnt
,
747 spin_unlock_bh(&iop_chan
->lock
);
749 return sw_desc
? &sw_desc
->async_tx
: NULL
;
752 static struct dma_async_tx_descriptor
*
753 iop_adma_prep_dma_pq(struct dma_chan
*chan
, dma_addr_t
*dst
, dma_addr_t
*src
,
754 unsigned int src_cnt
, const unsigned char *scf
, size_t len
,
757 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
758 struct iop_adma_desc_slot
*sw_desc
, *g
;
759 int slot_cnt
, slots_per_op
;
764 BUG_ON(len
> IOP_ADMA_XOR_MAX_BYTE_COUNT
);
766 dev_dbg(iop_chan
->device
->common
.dev
,
767 "%s src_cnt: %d len: %u flags: %lx\n",
768 __func__
, src_cnt
, len
, flags
);
770 if (dmaf_p_disabled_continue(flags
))
771 continue_srcs
= 1+src_cnt
;
772 else if (dmaf_continue(flags
))
773 continue_srcs
= 3+src_cnt
;
775 continue_srcs
= 0+src_cnt
;
777 spin_lock_bh(&iop_chan
->lock
);
778 slot_cnt
= iop_chan_pq_slot_count(len
, continue_srcs
, &slots_per_op
);
779 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
783 g
= sw_desc
->group_head
;
784 iop_desc_set_byte_count(g
, iop_chan
, len
);
786 /* even if P is disabled its destination address (bits
787 * [3:0]) must match Q. It is ok if P points to an
788 * invalid address, it won't be written.
790 if (flags
& DMA_PREP_PQ_DISABLE_P
)
791 dst
[0] = dst
[1] & 0x7;
793 iop_desc_set_pq_addr(g
, dst
);
794 sw_desc
->unmap_src_cnt
= src_cnt
;
795 sw_desc
->unmap_len
= len
;
796 sw_desc
->async_tx
.flags
= flags
;
797 for (i
= 0; i
< src_cnt
; i
++)
798 iop_desc_set_pq_src_addr(g
, i
, src
[i
], scf
[i
]);
800 /* if we are continuing a previous operation factor in
801 * the old p and q values, see the comment for dma_maxpq
802 * in include/linux/dmaengine.h
804 if (dmaf_p_disabled_continue(flags
))
805 iop_desc_set_pq_src_addr(g
, i
++, dst
[1], 1);
806 else if (dmaf_continue(flags
)) {
807 iop_desc_set_pq_src_addr(g
, i
++, dst
[0], 0);
808 iop_desc_set_pq_src_addr(g
, i
++, dst
[1], 1);
809 iop_desc_set_pq_src_addr(g
, i
++, dst
[1], 0);
811 iop_desc_init_pq(g
, i
, flags
);
813 spin_unlock_bh(&iop_chan
->lock
);
815 return sw_desc
? &sw_desc
->async_tx
: NULL
;
818 static struct dma_async_tx_descriptor
*
819 iop_adma_prep_dma_pq_val(struct dma_chan
*chan
, dma_addr_t
*pq
, dma_addr_t
*src
,
820 unsigned int src_cnt
, const unsigned char *scf
,
821 size_t len
, enum sum_check_flags
*pqres
,
824 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
825 struct iop_adma_desc_slot
*sw_desc
, *g
;
826 int slot_cnt
, slots_per_op
;
830 BUG_ON(len
> IOP_ADMA_XOR_MAX_BYTE_COUNT
);
832 dev_dbg(iop_chan
->device
->common
.dev
, "%s src_cnt: %d len: %u\n",
833 __func__
, src_cnt
, len
);
835 spin_lock_bh(&iop_chan
->lock
);
836 slot_cnt
= iop_chan_pq_zero_sum_slot_count(len
, src_cnt
+ 2, &slots_per_op
);
837 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
839 /* for validate operations p and q are tagged onto the
840 * end of the source list
842 int pq_idx
= src_cnt
;
844 g
= sw_desc
->group_head
;
845 iop_desc_init_pq_zero_sum(g
, src_cnt
+2, flags
);
846 iop_desc_set_pq_zero_sum_byte_count(g
, len
);
847 g
->pq_check_result
= pqres
;
848 pr_debug("\t%s: g->pq_check_result: %p\n",
849 __func__
, g
->pq_check_result
);
850 sw_desc
->unmap_src_cnt
= src_cnt
+2;
851 sw_desc
->unmap_len
= len
;
852 sw_desc
->async_tx
.flags
= flags
;
854 iop_desc_set_pq_zero_sum_src_addr(g
, src_cnt
,
857 iop_desc_set_pq_zero_sum_addr(g
, pq_idx
, src
);
859 spin_unlock_bh(&iop_chan
->lock
);
861 return sw_desc
? &sw_desc
->async_tx
: NULL
;
864 static void iop_adma_free_chan_resources(struct dma_chan
*chan
)
866 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
867 struct iop_adma_desc_slot
*iter
, *_iter
;
868 int in_use_descs
= 0;
870 iop_adma_slot_cleanup(iop_chan
);
872 spin_lock_bh(&iop_chan
->lock
);
873 list_for_each_entry_safe(iter
, _iter
, &iop_chan
->chain
,
876 list_del(&iter
->chain_node
);
878 list_for_each_entry_safe_reverse(
879 iter
, _iter
, &iop_chan
->all_slots
, slot_node
) {
880 list_del(&iter
->slot_node
);
882 iop_chan
->slots_allocated
--;
884 iop_chan
->last_used
= NULL
;
886 dev_dbg(iop_chan
->device
->common
.dev
, "%s slots_allocated %d\n",
887 __func__
, iop_chan
->slots_allocated
);
888 spin_unlock_bh(&iop_chan
->lock
);
890 /* one is ok since we left it on there on purpose */
891 if (in_use_descs
> 1)
892 printk(KERN_ERR
"IOP: Freeing %d in use descriptors!\n",
897 * iop_adma_status - poll the status of an ADMA transaction
898 * @chan: ADMA channel handle
899 * @cookie: ADMA transaction identifier
900 * @txstate: a holder for the current state of the channel or NULL
902 static enum dma_status
iop_adma_status(struct dma_chan
*chan
,
904 struct dma_tx_state
*txstate
)
906 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
907 dma_cookie_t last_used
;
908 dma_cookie_t last_complete
;
911 last_used
= chan
->cookie
;
912 last_complete
= iop_chan
->completed_cookie
;
913 dma_set_tx_state(txstate
, last_complete
, last_used
, 0);
914 ret
= dma_async_is_complete(cookie
, last_complete
, last_used
);
915 if (ret
== DMA_SUCCESS
)
918 iop_adma_slot_cleanup(iop_chan
);
920 last_used
= chan
->cookie
;
921 last_complete
= iop_chan
->completed_cookie
;
922 dma_set_tx_state(txstate
, last_complete
, last_used
, 0);
924 return dma_async_is_complete(cookie
, last_complete
, last_used
);
927 static irqreturn_t
iop_adma_eot_handler(int irq
, void *data
)
929 struct iop_adma_chan
*chan
= data
;
931 dev_dbg(chan
->device
->common
.dev
, "%s\n", __func__
);
933 tasklet_schedule(&chan
->irq_tasklet
);
935 iop_adma_device_clear_eot_status(chan
);
940 static irqreturn_t
iop_adma_eoc_handler(int irq
, void *data
)
942 struct iop_adma_chan
*chan
= data
;
944 dev_dbg(chan
->device
->common
.dev
, "%s\n", __func__
);
946 tasklet_schedule(&chan
->irq_tasklet
);
948 iop_adma_device_clear_eoc_status(chan
);
953 static irqreturn_t
iop_adma_err_handler(int irq
, void *data
)
955 struct iop_adma_chan
*chan
= data
;
956 unsigned long status
= iop_chan_get_status(chan
);
958 dev_printk(KERN_ERR
, chan
->device
->common
.dev
,
959 "error ( %s%s%s%s%s%s%s)\n",
960 iop_is_err_int_parity(status
, chan
) ? "int_parity " : "",
961 iop_is_err_mcu_abort(status
, chan
) ? "mcu_abort " : "",
962 iop_is_err_int_tabort(status
, chan
) ? "int_tabort " : "",
963 iop_is_err_int_mabort(status
, chan
) ? "int_mabort " : "",
964 iop_is_err_pci_tabort(status
, chan
) ? "pci_tabort " : "",
965 iop_is_err_pci_mabort(status
, chan
) ? "pci_mabort " : "",
966 iop_is_err_split_tx(status
, chan
) ? "split_tx " : "");
968 iop_adma_device_clear_err_status(chan
);
975 static void iop_adma_issue_pending(struct dma_chan
*chan
)
977 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
979 if (iop_chan
->pending
) {
980 iop_chan
->pending
= 0;
981 iop_chan_append(iop_chan
);
986 * Perform a transaction to verify the HW works.
988 #define IOP_ADMA_TEST_SIZE 2000
990 static int __devinit
iop_adma_memcpy_self_test(struct iop_adma_device
*device
)
994 dma_addr_t src_dma
, dest_dma
;
995 struct dma_chan
*dma_chan
;
997 struct dma_async_tx_descriptor
*tx
;
999 struct iop_adma_chan
*iop_chan
;
1001 dev_dbg(device
->common
.dev
, "%s\n", __func__
);
1003 src
= kmalloc(IOP_ADMA_TEST_SIZE
, GFP_KERNEL
);
1006 dest
= kzalloc(IOP_ADMA_TEST_SIZE
, GFP_KERNEL
);
1012 /* Fill in src buffer */
1013 for (i
= 0; i
< IOP_ADMA_TEST_SIZE
; i
++)
1014 ((u8
*) src
)[i
] = (u8
)i
;
1016 /* Start copy, using first DMA channel */
1017 dma_chan
= container_of(device
->common
.channels
.next
,
1020 if (iop_adma_alloc_chan_resources(dma_chan
) < 1) {
1025 dest_dma
= dma_map_single(dma_chan
->device
->dev
, dest
,
1026 IOP_ADMA_TEST_SIZE
, DMA_FROM_DEVICE
);
1027 src_dma
= dma_map_single(dma_chan
->device
->dev
, src
,
1028 IOP_ADMA_TEST_SIZE
, DMA_TO_DEVICE
);
1029 tx
= iop_adma_prep_dma_memcpy(dma_chan
, dest_dma
, src_dma
,
1031 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
1033 cookie
= iop_adma_tx_submit(tx
);
1034 iop_adma_issue_pending(dma_chan
);
1037 if (iop_adma_status(dma_chan
, cookie
, NULL
) !=
1039 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
1040 "Self-test copy timed out, disabling\n");
1042 goto free_resources
;
1045 iop_chan
= to_iop_adma_chan(dma_chan
);
1046 dma_sync_single_for_cpu(&iop_chan
->device
->pdev
->dev
, dest_dma
,
1047 IOP_ADMA_TEST_SIZE
, DMA_FROM_DEVICE
);
1048 if (memcmp(src
, dest
, IOP_ADMA_TEST_SIZE
)) {
1049 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
1050 "Self-test copy failed compare, disabling\n");
1052 goto free_resources
;
1056 iop_adma_free_chan_resources(dma_chan
);
1063 #define IOP_ADMA_NUM_SRC_TEST 4 /* must be <= 15 */
1064 static int __devinit
1065 iop_adma_xor_val_self_test(struct iop_adma_device
*device
)
1069 struct page
*xor_srcs
[IOP_ADMA_NUM_SRC_TEST
];
1070 struct page
*zero_sum_srcs
[IOP_ADMA_NUM_SRC_TEST
+ 1];
1071 dma_addr_t dma_srcs
[IOP_ADMA_NUM_SRC_TEST
+ 1];
1072 dma_addr_t dma_addr
, dest_dma
;
1073 struct dma_async_tx_descriptor
*tx
;
1074 struct dma_chan
*dma_chan
;
1075 dma_cookie_t cookie
;
1078 u32 zero_sum_result
;
1080 struct iop_adma_chan
*iop_chan
;
1082 dev_dbg(device
->common
.dev
, "%s\n", __func__
);
1084 for (src_idx
= 0; src_idx
< IOP_ADMA_NUM_SRC_TEST
; src_idx
++) {
1085 xor_srcs
[src_idx
] = alloc_page(GFP_KERNEL
);
1086 if (!xor_srcs
[src_idx
]) {
1088 __free_page(xor_srcs
[src_idx
]);
1093 dest
= alloc_page(GFP_KERNEL
);
1096 __free_page(xor_srcs
[src_idx
]);
1100 /* Fill in src buffers */
1101 for (src_idx
= 0; src_idx
< IOP_ADMA_NUM_SRC_TEST
; src_idx
++) {
1102 u8
*ptr
= page_address(xor_srcs
[src_idx
]);
1103 for (i
= 0; i
< PAGE_SIZE
; i
++)
1104 ptr
[i
] = (1 << src_idx
);
1107 for (src_idx
= 0; src_idx
< IOP_ADMA_NUM_SRC_TEST
; src_idx
++)
1108 cmp_byte
^= (u8
) (1 << src_idx
);
1110 cmp_word
= (cmp_byte
<< 24) | (cmp_byte
<< 16) |
1111 (cmp_byte
<< 8) | cmp_byte
;
1113 memset(page_address(dest
), 0, PAGE_SIZE
);
1115 dma_chan
= container_of(device
->common
.channels
.next
,
1118 if (iop_adma_alloc_chan_resources(dma_chan
) < 1) {
1124 dest_dma
= dma_map_page(dma_chan
->device
->dev
, dest
, 0,
1125 PAGE_SIZE
, DMA_FROM_DEVICE
);
1126 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
; i
++)
1127 dma_srcs
[i
] = dma_map_page(dma_chan
->device
->dev
, xor_srcs
[i
],
1128 0, PAGE_SIZE
, DMA_TO_DEVICE
);
1129 tx
= iop_adma_prep_dma_xor(dma_chan
, dest_dma
, dma_srcs
,
1130 IOP_ADMA_NUM_SRC_TEST
, PAGE_SIZE
,
1131 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
1133 cookie
= iop_adma_tx_submit(tx
);
1134 iop_adma_issue_pending(dma_chan
);
1137 if (iop_adma_status(dma_chan
, cookie
, NULL
) !=
1139 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
1140 "Self-test xor timed out, disabling\n");
1142 goto free_resources
;
1145 iop_chan
= to_iop_adma_chan(dma_chan
);
1146 dma_sync_single_for_cpu(&iop_chan
->device
->pdev
->dev
, dest_dma
,
1147 PAGE_SIZE
, DMA_FROM_DEVICE
);
1148 for (i
= 0; i
< (PAGE_SIZE
/ sizeof(u32
)); i
++) {
1149 u32
*ptr
= page_address(dest
);
1150 if (ptr
[i
] != cmp_word
) {
1151 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
1152 "Self-test xor failed compare, disabling\n");
1154 goto free_resources
;
1157 dma_sync_single_for_device(&iop_chan
->device
->pdev
->dev
, dest_dma
,
1158 PAGE_SIZE
, DMA_TO_DEVICE
);
1160 /* skip zero sum if the capability is not present */
1161 if (!dma_has_cap(DMA_XOR_VAL
, dma_chan
->device
->cap_mask
))
1162 goto free_resources
;
1164 /* zero sum the sources with the destintation page */
1165 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
; i
++)
1166 zero_sum_srcs
[i
] = xor_srcs
[i
];
1167 zero_sum_srcs
[i
] = dest
;
1169 zero_sum_result
= 1;
1171 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
+ 1; i
++)
1172 dma_srcs
[i
] = dma_map_page(dma_chan
->device
->dev
,
1173 zero_sum_srcs
[i
], 0, PAGE_SIZE
,
1175 tx
= iop_adma_prep_dma_xor_val(dma_chan
, dma_srcs
,
1176 IOP_ADMA_NUM_SRC_TEST
+ 1, PAGE_SIZE
,
1178 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
1180 cookie
= iop_adma_tx_submit(tx
);
1181 iop_adma_issue_pending(dma_chan
);
1184 if (iop_adma_status(dma_chan
, cookie
, NULL
) != DMA_SUCCESS
) {
1185 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
1186 "Self-test zero sum timed out, disabling\n");
1188 goto free_resources
;
1191 if (zero_sum_result
!= 0) {
1192 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
1193 "Self-test zero sum failed compare, disabling\n");
1195 goto free_resources
;
1199 dma_addr
= dma_map_page(dma_chan
->device
->dev
, dest
, 0,
1200 PAGE_SIZE
, DMA_FROM_DEVICE
);
1201 tx
= iop_adma_prep_dma_memset(dma_chan
, dma_addr
, 0, PAGE_SIZE
,
1202 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
1204 cookie
= iop_adma_tx_submit(tx
);
1205 iop_adma_issue_pending(dma_chan
);
1208 if (iop_adma_status(dma_chan
, cookie
, NULL
) != DMA_SUCCESS
) {
1209 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
1210 "Self-test memset timed out, disabling\n");
1212 goto free_resources
;
1215 for (i
= 0; i
< PAGE_SIZE
/sizeof(u32
); i
++) {
1216 u32
*ptr
= page_address(dest
);
1218 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
1219 "Self-test memset failed compare, disabling\n");
1221 goto free_resources
;
1225 /* test for non-zero parity sum */
1226 zero_sum_result
= 0;
1227 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
+ 1; i
++)
1228 dma_srcs
[i
] = dma_map_page(dma_chan
->device
->dev
,
1229 zero_sum_srcs
[i
], 0, PAGE_SIZE
,
1231 tx
= iop_adma_prep_dma_xor_val(dma_chan
, dma_srcs
,
1232 IOP_ADMA_NUM_SRC_TEST
+ 1, PAGE_SIZE
,
1234 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
1236 cookie
= iop_adma_tx_submit(tx
);
1237 iop_adma_issue_pending(dma_chan
);
1240 if (iop_adma_status(dma_chan
, cookie
, NULL
) != DMA_SUCCESS
) {
1241 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
1242 "Self-test non-zero sum timed out, disabling\n");
1244 goto free_resources
;
1247 if (zero_sum_result
!= 1) {
1248 dev_printk(KERN_ERR
, dma_chan
->device
->dev
,
1249 "Self-test non-zero sum failed compare, disabling\n");
1251 goto free_resources
;
1255 iop_adma_free_chan_resources(dma_chan
);
1257 src_idx
= IOP_ADMA_NUM_SRC_TEST
;
1259 __free_page(xor_srcs
[src_idx
]);
1264 #ifdef CONFIG_RAID6_PQ
1265 static int __devinit
1266 iop_adma_pq_zero_sum_self_test(struct iop_adma_device
*device
)
1268 /* combined sources, software pq results, and extra hw pq results */
1269 struct page
*pq
[IOP_ADMA_NUM_SRC_TEST
+2+2];
1270 /* ptr to the extra hw pq buffers defined above */
1271 struct page
**pq_hw
= &pq
[IOP_ADMA_NUM_SRC_TEST
+2];
1272 /* address conversion buffers (dma_map / page_address) */
1273 void *pq_sw
[IOP_ADMA_NUM_SRC_TEST
+2];
1274 dma_addr_t pq_src
[IOP_ADMA_NUM_SRC_TEST
];
1275 dma_addr_t pq_dest
[2];
1278 struct dma_async_tx_descriptor
*tx
;
1279 struct dma_chan
*dma_chan
;
1280 dma_cookie_t cookie
;
1281 u32 zero_sum_result
;
1285 dev_dbg(device
->common
.dev
, "%s\n", __func__
);
1287 for (i
= 0; i
< ARRAY_SIZE(pq
); i
++) {
1288 pq
[i
] = alloc_page(GFP_KERNEL
);
1296 /* Fill in src buffers */
1297 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
; i
++) {
1298 pq_sw
[i
] = page_address(pq
[i
]);
1299 memset(pq_sw
[i
], 0x11111111 * (1<<i
), PAGE_SIZE
);
1301 pq_sw
[i
] = page_address(pq
[i
]);
1302 pq_sw
[i
+1] = page_address(pq
[i
+1]);
1304 dma_chan
= container_of(device
->common
.channels
.next
,
1307 if (iop_adma_alloc_chan_resources(dma_chan
) < 1) {
1312 dev
= dma_chan
->device
->dev
;
1314 /* initialize the dests */
1315 memset(page_address(pq_hw
[0]), 0 , PAGE_SIZE
);
1316 memset(page_address(pq_hw
[1]), 0 , PAGE_SIZE
);
1319 pq_dest
[0] = dma_map_page(dev
, pq_hw
[0], 0, PAGE_SIZE
, DMA_FROM_DEVICE
);
1320 pq_dest
[1] = dma_map_page(dev
, pq_hw
[1], 0, PAGE_SIZE
, DMA_FROM_DEVICE
);
1321 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
; i
++)
1322 pq_src
[i
] = dma_map_page(dev
, pq
[i
], 0, PAGE_SIZE
,
1325 tx
= iop_adma_prep_dma_pq(dma_chan
, pq_dest
, pq_src
,
1326 IOP_ADMA_NUM_SRC_TEST
, (u8
*)raid6_gfexp
,
1328 DMA_PREP_INTERRUPT
|
1331 cookie
= iop_adma_tx_submit(tx
);
1332 iop_adma_issue_pending(dma_chan
);
1335 if (iop_adma_status(dma_chan
, cookie
, NULL
) !=
1337 dev_err(dev
, "Self-test pq timed out, disabling\n");
1339 goto free_resources
;
1342 raid6_call
.gen_syndrome(IOP_ADMA_NUM_SRC_TEST
+2, PAGE_SIZE
, pq_sw
);
1344 if (memcmp(pq_sw
[IOP_ADMA_NUM_SRC_TEST
],
1345 page_address(pq_hw
[0]), PAGE_SIZE
) != 0) {
1346 dev_err(dev
, "Self-test p failed compare, disabling\n");
1348 goto free_resources
;
1350 if (memcmp(pq_sw
[IOP_ADMA_NUM_SRC_TEST
+1],
1351 page_address(pq_hw
[1]), PAGE_SIZE
) != 0) {
1352 dev_err(dev
, "Self-test q failed compare, disabling\n");
1354 goto free_resources
;
1357 /* test correct zero sum using the software generated pq values */
1358 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
+ 2; i
++)
1359 pq_src
[i
] = dma_map_page(dev
, pq
[i
], 0, PAGE_SIZE
,
1362 zero_sum_result
= ~0;
1363 tx
= iop_adma_prep_dma_pq_val(dma_chan
, &pq_src
[IOP_ADMA_NUM_SRC_TEST
],
1364 pq_src
, IOP_ADMA_NUM_SRC_TEST
,
1365 raid6_gfexp
, PAGE_SIZE
, &zero_sum_result
,
1366 DMA_PREP_INTERRUPT
|DMA_CTRL_ACK
);
1368 cookie
= iop_adma_tx_submit(tx
);
1369 iop_adma_issue_pending(dma_chan
);
1372 if (iop_adma_status(dma_chan
, cookie
, NULL
) !=
1374 dev_err(dev
, "Self-test pq-zero-sum timed out, disabling\n");
1376 goto free_resources
;
1379 if (zero_sum_result
!= 0) {
1380 dev_err(dev
, "Self-test pq-zero-sum failed to validate: %x\n",
1383 goto free_resources
;
1386 /* test incorrect zero sum */
1387 i
= IOP_ADMA_NUM_SRC_TEST
;
1388 memset(pq_sw
[i
] + 100, 0, 100);
1389 memset(pq_sw
[i
+1] + 200, 0, 200);
1390 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
+ 2; i
++)
1391 pq_src
[i
] = dma_map_page(dev
, pq
[i
], 0, PAGE_SIZE
,
1394 zero_sum_result
= 0;
1395 tx
= iop_adma_prep_dma_pq_val(dma_chan
, &pq_src
[IOP_ADMA_NUM_SRC_TEST
],
1396 pq_src
, IOP_ADMA_NUM_SRC_TEST
,
1397 raid6_gfexp
, PAGE_SIZE
, &zero_sum_result
,
1398 DMA_PREP_INTERRUPT
|DMA_CTRL_ACK
);
1400 cookie
= iop_adma_tx_submit(tx
);
1401 iop_adma_issue_pending(dma_chan
);
1404 if (iop_adma_status(dma_chan
, cookie
, NULL
) !=
1406 dev_err(dev
, "Self-test !pq-zero-sum timed out, disabling\n");
1408 goto free_resources
;
1411 if (zero_sum_result
!= (SUM_CHECK_P_RESULT
| SUM_CHECK_Q_RESULT
)) {
1412 dev_err(dev
, "Self-test !pq-zero-sum failed to validate: %x\n",
1415 goto free_resources
;
1419 iop_adma_free_chan_resources(dma_chan
);
1428 static int __devexit
iop_adma_remove(struct platform_device
*dev
)
1430 struct iop_adma_device
*device
= platform_get_drvdata(dev
);
1431 struct dma_chan
*chan
, *_chan
;
1432 struct iop_adma_chan
*iop_chan
;
1433 struct iop_adma_platform_data
*plat_data
= dev
->dev
.platform_data
;
1435 dma_async_device_unregister(&device
->common
);
1437 dma_free_coherent(&dev
->dev
, plat_data
->pool_size
,
1438 device
->dma_desc_pool_virt
, device
->dma_desc_pool
);
1440 list_for_each_entry_safe(chan
, _chan
, &device
->common
.channels
,
1442 iop_chan
= to_iop_adma_chan(chan
);
1443 list_del(&chan
->device_node
);
1451 static int __devinit
iop_adma_probe(struct platform_device
*pdev
)
1453 struct resource
*res
;
1455 struct iop_adma_device
*adev
;
1456 struct iop_adma_chan
*iop_chan
;
1457 struct dma_device
*dma_dev
;
1458 struct iop_adma_platform_data
*plat_data
= pdev
->dev
.platform_data
;
1460 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1464 if (!devm_request_mem_region(&pdev
->dev
, res
->start
,
1465 resource_size(res
), pdev
->name
))
1468 adev
= kzalloc(sizeof(*adev
), GFP_KERNEL
);
1471 dma_dev
= &adev
->common
;
1473 /* allocate coherent memory for hardware descriptors
1474 * note: writecombine gives slightly better performance, but
1475 * requires that we explicitly flush the writes
1477 if ((adev
->dma_desc_pool_virt
= dma_alloc_writecombine(&pdev
->dev
,
1478 plat_data
->pool_size
,
1479 &adev
->dma_desc_pool
,
1480 GFP_KERNEL
)) == NULL
) {
1485 dev_dbg(&pdev
->dev
, "%s: allocted descriptor pool virt %p phys %p\n",
1486 __func__
, adev
->dma_desc_pool_virt
,
1487 (void *) adev
->dma_desc_pool
);
1489 adev
->id
= plat_data
->hw_id
;
1491 /* discover transaction capabilites from the platform data */
1492 dma_dev
->cap_mask
= plat_data
->cap_mask
;
1495 platform_set_drvdata(pdev
, adev
);
1497 INIT_LIST_HEAD(&dma_dev
->channels
);
1499 /* set base routines */
1500 dma_dev
->device_alloc_chan_resources
= iop_adma_alloc_chan_resources
;
1501 dma_dev
->device_free_chan_resources
= iop_adma_free_chan_resources
;
1502 dma_dev
->device_tx_status
= iop_adma_status
;
1503 dma_dev
->device_issue_pending
= iop_adma_issue_pending
;
1504 dma_dev
->dev
= &pdev
->dev
;
1506 /* set prep routines based on capability */
1507 if (dma_has_cap(DMA_MEMCPY
, dma_dev
->cap_mask
))
1508 dma_dev
->device_prep_dma_memcpy
= iop_adma_prep_dma_memcpy
;
1509 if (dma_has_cap(DMA_MEMSET
, dma_dev
->cap_mask
))
1510 dma_dev
->device_prep_dma_memset
= iop_adma_prep_dma_memset
;
1511 if (dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
)) {
1512 dma_dev
->max_xor
= iop_adma_get_max_xor();
1513 dma_dev
->device_prep_dma_xor
= iop_adma_prep_dma_xor
;
1515 if (dma_has_cap(DMA_XOR_VAL
, dma_dev
->cap_mask
))
1516 dma_dev
->device_prep_dma_xor_val
=
1517 iop_adma_prep_dma_xor_val
;
1518 if (dma_has_cap(DMA_PQ
, dma_dev
->cap_mask
)) {
1519 dma_set_maxpq(dma_dev
, iop_adma_get_max_pq(), 0);
1520 dma_dev
->device_prep_dma_pq
= iop_adma_prep_dma_pq
;
1522 if (dma_has_cap(DMA_PQ_VAL
, dma_dev
->cap_mask
))
1523 dma_dev
->device_prep_dma_pq_val
=
1524 iop_adma_prep_dma_pq_val
;
1525 if (dma_has_cap(DMA_INTERRUPT
, dma_dev
->cap_mask
))
1526 dma_dev
->device_prep_dma_interrupt
=
1527 iop_adma_prep_dma_interrupt
;
1529 iop_chan
= kzalloc(sizeof(*iop_chan
), GFP_KERNEL
);
1534 iop_chan
->device
= adev
;
1536 iop_chan
->mmr_base
= devm_ioremap(&pdev
->dev
, res
->start
,
1537 resource_size(res
));
1538 if (!iop_chan
->mmr_base
) {
1540 goto err_free_iop_chan
;
1542 tasklet_init(&iop_chan
->irq_tasklet
, iop_adma_tasklet
, (unsigned long)
1545 /* clear errors before enabling interrupts */
1546 iop_adma_device_clear_err_status(iop_chan
);
1548 for (i
= 0; i
< 3; i
++) {
1549 irq_handler_t handler
[] = { iop_adma_eot_handler
,
1550 iop_adma_eoc_handler
,
1551 iop_adma_err_handler
};
1552 int irq
= platform_get_irq(pdev
, i
);
1555 goto err_free_iop_chan
;
1557 ret
= devm_request_irq(&pdev
->dev
, irq
,
1558 handler
[i
], 0, pdev
->name
, iop_chan
);
1560 goto err_free_iop_chan
;
1564 spin_lock_init(&iop_chan
->lock
);
1565 INIT_LIST_HEAD(&iop_chan
->chain
);
1566 INIT_LIST_HEAD(&iop_chan
->all_slots
);
1567 iop_chan
->common
.device
= dma_dev
;
1568 list_add_tail(&iop_chan
->common
.device_node
, &dma_dev
->channels
);
1570 if (dma_has_cap(DMA_MEMCPY
, dma_dev
->cap_mask
)) {
1571 ret
= iop_adma_memcpy_self_test(adev
);
1572 dev_dbg(&pdev
->dev
, "memcpy self test returned %d\n", ret
);
1574 goto err_free_iop_chan
;
1577 if (dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
) ||
1578 dma_has_cap(DMA_MEMSET
, dma_dev
->cap_mask
)) {
1579 ret
= iop_adma_xor_val_self_test(adev
);
1580 dev_dbg(&pdev
->dev
, "xor self test returned %d\n", ret
);
1582 goto err_free_iop_chan
;
1585 if (dma_has_cap(DMA_PQ
, dma_dev
->cap_mask
) &&
1586 dma_has_cap(DMA_PQ_VAL
, dma_dev
->cap_mask
)) {
1587 #ifdef CONFIG_RAID6_PQ
1588 ret
= iop_adma_pq_zero_sum_self_test(adev
);
1589 dev_dbg(&pdev
->dev
, "pq self test returned %d\n", ret
);
1591 /* can not test raid6, so do not publish capability */
1592 dma_cap_clear(DMA_PQ
, dma_dev
->cap_mask
);
1593 dma_cap_clear(DMA_PQ_VAL
, dma_dev
->cap_mask
);
1597 goto err_free_iop_chan
;
1600 dev_printk(KERN_INFO
, &pdev
->dev
, "Intel(R) IOP: "
1601 "( %s%s%s%s%s%s%s)\n",
1602 dma_has_cap(DMA_PQ
, dma_dev
->cap_mask
) ? "pq " : "",
1603 dma_has_cap(DMA_PQ_VAL
, dma_dev
->cap_mask
) ? "pq_val " : "",
1604 dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
) ? "xor " : "",
1605 dma_has_cap(DMA_XOR_VAL
, dma_dev
->cap_mask
) ? "xor_val " : "",
1606 dma_has_cap(DMA_MEMSET
, dma_dev
->cap_mask
) ? "fill " : "",
1607 dma_has_cap(DMA_MEMCPY
, dma_dev
->cap_mask
) ? "cpy " : "",
1608 dma_has_cap(DMA_INTERRUPT
, dma_dev
->cap_mask
) ? "intr " : "");
1610 dma_async_device_register(dma_dev
);
1616 dma_free_coherent(&adev
->pdev
->dev
, plat_data
->pool_size
,
1617 adev
->dma_desc_pool_virt
, adev
->dma_desc_pool
);
1624 static void iop_chan_start_null_memcpy(struct iop_adma_chan
*iop_chan
)
1626 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
1627 dma_cookie_t cookie
;
1628 int slot_cnt
, slots_per_op
;
1630 dev_dbg(iop_chan
->device
->common
.dev
, "%s\n", __func__
);
1632 spin_lock_bh(&iop_chan
->lock
);
1633 slot_cnt
= iop_chan_memcpy_slot_count(0, &slots_per_op
);
1634 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
1636 grp_start
= sw_desc
->group_head
;
1638 list_splice_init(&sw_desc
->tx_list
, &iop_chan
->chain
);
1639 async_tx_ack(&sw_desc
->async_tx
);
1640 iop_desc_init_memcpy(grp_start
, 0);
1641 iop_desc_set_byte_count(grp_start
, iop_chan
, 0);
1642 iop_desc_set_dest_addr(grp_start
, iop_chan
, 0);
1643 iop_desc_set_memcpy_src_addr(grp_start
, 0);
1645 cookie
= iop_chan
->common
.cookie
;
1650 /* initialize the completed cookie to be less than
1651 * the most recently used cookie
1653 iop_chan
->completed_cookie
= cookie
- 1;
1654 iop_chan
->common
.cookie
= sw_desc
->async_tx
.cookie
= cookie
;
1656 /* channel should not be busy */
1657 BUG_ON(iop_chan_is_busy(iop_chan
));
1659 /* clear any prior error-status bits */
1660 iop_adma_device_clear_err_status(iop_chan
);
1662 /* disable operation */
1663 iop_chan_disable(iop_chan
);
1665 /* set the descriptor address */
1666 iop_chan_set_next_descriptor(iop_chan
, sw_desc
->async_tx
.phys
);
1668 /* 1/ don't add pre-chained descriptors
1669 * 2/ dummy read to flush next_desc write
1671 BUG_ON(iop_desc_get_next_desc(sw_desc
));
1673 /* run the descriptor */
1674 iop_chan_enable(iop_chan
);
1676 dev_printk(KERN_ERR
, iop_chan
->device
->common
.dev
,
1677 "failed to allocate null descriptor\n");
1678 spin_unlock_bh(&iop_chan
->lock
);
1681 static void iop_chan_start_null_xor(struct iop_adma_chan
*iop_chan
)
1683 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
1684 dma_cookie_t cookie
;
1685 int slot_cnt
, slots_per_op
;
1687 dev_dbg(iop_chan
->device
->common
.dev
, "%s\n", __func__
);
1689 spin_lock_bh(&iop_chan
->lock
);
1690 slot_cnt
= iop_chan_xor_slot_count(0, 2, &slots_per_op
);
1691 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
1693 grp_start
= sw_desc
->group_head
;
1694 list_splice_init(&sw_desc
->tx_list
, &iop_chan
->chain
);
1695 async_tx_ack(&sw_desc
->async_tx
);
1696 iop_desc_init_null_xor(grp_start
, 2, 0);
1697 iop_desc_set_byte_count(grp_start
, iop_chan
, 0);
1698 iop_desc_set_dest_addr(grp_start
, iop_chan
, 0);
1699 iop_desc_set_xor_src_addr(grp_start
, 0, 0);
1700 iop_desc_set_xor_src_addr(grp_start
, 1, 0);
1702 cookie
= iop_chan
->common
.cookie
;
1707 /* initialize the completed cookie to be less than
1708 * the most recently used cookie
1710 iop_chan
->completed_cookie
= cookie
- 1;
1711 iop_chan
->common
.cookie
= sw_desc
->async_tx
.cookie
= cookie
;
1713 /* channel should not be busy */
1714 BUG_ON(iop_chan_is_busy(iop_chan
));
1716 /* clear any prior error-status bits */
1717 iop_adma_device_clear_err_status(iop_chan
);
1719 /* disable operation */
1720 iop_chan_disable(iop_chan
);
1722 /* set the descriptor address */
1723 iop_chan_set_next_descriptor(iop_chan
, sw_desc
->async_tx
.phys
);
1725 /* 1/ don't add pre-chained descriptors
1726 * 2/ dummy read to flush next_desc write
1728 BUG_ON(iop_desc_get_next_desc(sw_desc
));
1730 /* run the descriptor */
1731 iop_chan_enable(iop_chan
);
1733 dev_printk(KERN_ERR
, iop_chan
->device
->common
.dev
,
1734 "failed to allocate null descriptor\n");
1735 spin_unlock_bh(&iop_chan
->lock
);
1738 MODULE_ALIAS("platform:iop-adma");
1740 static struct platform_driver iop_adma_driver
= {
1741 .probe
= iop_adma_probe
,
1742 .remove
= __devexit_p(iop_adma_remove
),
1744 .owner
= THIS_MODULE
,
1749 static int __init
iop_adma_init (void)
1751 return platform_driver_register(&iop_adma_driver
);
1754 static void __exit
iop_adma_exit (void)
1756 platform_driver_unregister(&iop_adma_driver
);
1759 module_exit(iop_adma_exit
);
1760 module_init(iop_adma_init
);
1762 MODULE_AUTHOR("Intel Corporation");
1763 MODULE_DESCRIPTION("IOP ADMA Engine Driver");
1764 MODULE_LICENSE("GPL");