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 #include "dmaengine.h"
41 #define to_iop_adma_chan(chan) container_of(chan, struct iop_adma_chan, common)
42 #define to_iop_adma_device(dev) \
43 container_of(dev, struct iop_adma_device, common)
44 #define tx_to_iop_adma_slot(tx) \
45 container_of(tx, struct iop_adma_desc_slot, async_tx)
48 * iop_adma_free_slots - flags descriptor slots for reuse
50 * Caller must hold &iop_chan->lock while calling this function
52 static void iop_adma_free_slots(struct iop_adma_desc_slot
*slot
)
54 int stride
= slot
->slots_per_op
;
57 slot
->slots_per_op
= 0;
58 slot
= list_entry(slot
->slot_node
.next
,
59 struct iop_adma_desc_slot
,
65 iop_desc_unmap(struct iop_adma_chan
*iop_chan
, struct iop_adma_desc_slot
*desc
)
67 struct dma_async_tx_descriptor
*tx
= &desc
->async_tx
;
68 struct iop_adma_desc_slot
*unmap
= desc
->group_head
;
69 struct device
*dev
= &iop_chan
->device
->pdev
->dev
;
70 u32 len
= unmap
->unmap_len
;
71 enum dma_ctrl_flags flags
= tx
->flags
;
76 src_cnt
= unmap
->unmap_src_cnt
;
77 dest
= iop_desc_get_dest_addr(unmap
, iop_chan
);
78 if (!(flags
& DMA_COMPL_SKIP_DEST_UNMAP
)) {
79 enum dma_data_direction dir
;
81 if (src_cnt
> 1) /* is xor? */
82 dir
= DMA_BIDIRECTIONAL
;
84 dir
= DMA_FROM_DEVICE
;
86 dma_unmap_page(dev
, dest
, len
, dir
);
89 if (!(flags
& DMA_COMPL_SKIP_SRC_UNMAP
)) {
91 addr
= iop_desc_get_src_addr(unmap
, iop_chan
, src_cnt
);
94 dma_unmap_page(dev
, addr
, len
, DMA_TO_DEVICE
);
97 desc
->group_head
= NULL
;
101 iop_desc_unmap_pq(struct iop_adma_chan
*iop_chan
, struct iop_adma_desc_slot
*desc
)
103 struct dma_async_tx_descriptor
*tx
= &desc
->async_tx
;
104 struct iop_adma_desc_slot
*unmap
= desc
->group_head
;
105 struct device
*dev
= &iop_chan
->device
->pdev
->dev
;
106 u32 len
= unmap
->unmap_len
;
107 enum dma_ctrl_flags flags
= tx
->flags
;
108 u32 src_cnt
= unmap
->unmap_src_cnt
;
109 dma_addr_t pdest
= iop_desc_get_dest_addr(unmap
, iop_chan
);
110 dma_addr_t qdest
= iop_desc_get_qdest_addr(unmap
, iop_chan
);
113 if (tx
->flags
& DMA_PREP_CONTINUE
)
116 if (!(flags
& DMA_COMPL_SKIP_DEST_UNMAP
) && !desc
->pq_check_result
) {
117 dma_unmap_page(dev
, pdest
, len
, DMA_BIDIRECTIONAL
);
118 dma_unmap_page(dev
, qdest
, len
, DMA_BIDIRECTIONAL
);
121 if (!(flags
& DMA_COMPL_SKIP_SRC_UNMAP
)) {
124 for (i
= 0; i
< src_cnt
; i
++) {
125 addr
= iop_desc_get_src_addr(unmap
, iop_chan
, i
);
126 dma_unmap_page(dev
, addr
, len
, DMA_TO_DEVICE
);
128 if (desc
->pq_check_result
) {
129 dma_unmap_page(dev
, pdest
, len
, DMA_TO_DEVICE
);
130 dma_unmap_page(dev
, qdest
, len
, DMA_TO_DEVICE
);
134 desc
->group_head
= NULL
;
139 iop_adma_run_tx_complete_actions(struct iop_adma_desc_slot
*desc
,
140 struct iop_adma_chan
*iop_chan
, dma_cookie_t cookie
)
142 struct dma_async_tx_descriptor
*tx
= &desc
->async_tx
;
144 BUG_ON(tx
->cookie
< 0);
145 if (tx
->cookie
> 0) {
149 /* call the callback (must not sleep or submit new
150 * operations to this channel)
153 tx
->callback(tx
->callback_param
);
155 /* unmap dma addresses
156 * (unmap_single vs unmap_page?)
158 if (desc
->group_head
&& desc
->unmap_len
) {
159 if (iop_desc_is_pq(desc
))
160 iop_desc_unmap_pq(iop_chan
, desc
);
162 iop_desc_unmap(iop_chan
, desc
);
166 /* run dependent operations */
167 dma_run_dependencies(tx
);
173 iop_adma_clean_slot(struct iop_adma_desc_slot
*desc
,
174 struct iop_adma_chan
*iop_chan
)
176 /* the client is allowed to attach dependent operations
179 if (!async_tx_test_ack(&desc
->async_tx
))
182 /* leave the last descriptor in the chain
183 * so we can append to it
185 if (desc
->chain_node
.next
== &iop_chan
->chain
)
188 dev_dbg(iop_chan
->device
->common
.dev
,
189 "\tfree slot: %d slots_per_op: %d\n",
190 desc
->idx
, desc
->slots_per_op
);
192 list_del(&desc
->chain_node
);
193 iop_adma_free_slots(desc
);
198 static void __iop_adma_slot_cleanup(struct iop_adma_chan
*iop_chan
)
200 struct iop_adma_desc_slot
*iter
, *_iter
, *grp_start
= NULL
;
201 dma_cookie_t cookie
= 0;
202 u32 current_desc
= iop_chan_get_current_descriptor(iop_chan
);
203 int busy
= iop_chan_is_busy(iop_chan
);
204 int seen_current
= 0, slot_cnt
= 0, slots_per_op
= 0;
206 dev_dbg(iop_chan
->device
->common
.dev
, "%s\n", __func__
);
207 /* free completed slots from the chain starting with
208 * the oldest descriptor
210 list_for_each_entry_safe(iter
, _iter
, &iop_chan
->chain
,
212 pr_debug("\tcookie: %d slot: %d busy: %d "
213 "this_desc: %#x next_desc: %#x ack: %d\n",
214 iter
->async_tx
.cookie
, iter
->idx
, busy
,
215 iter
->async_tx
.phys
, iop_desc_get_next_desc(iter
),
216 async_tx_test_ack(&iter
->async_tx
));
218 prefetch(&_iter
->async_tx
);
220 /* do not advance past the current descriptor loaded into the
221 * hardware channel, subsequent descriptors are either in
222 * process or have not been submitted
227 /* stop the search if we reach the current descriptor and the
228 * channel is busy, or if it appears that the current descriptor
229 * needs to be re-read (i.e. has been appended to)
231 if (iter
->async_tx
.phys
== current_desc
) {
232 BUG_ON(seen_current
++);
233 if (busy
|| iop_desc_get_next_desc(iter
))
237 /* detect the start of a group transaction */
238 if (!slot_cnt
&& !slots_per_op
) {
239 slot_cnt
= iter
->slot_cnt
;
240 slots_per_op
= iter
->slots_per_op
;
241 if (slot_cnt
<= slots_per_op
) {
248 pr_debug("\tgroup++\n");
251 slot_cnt
-= slots_per_op
;
254 /* all the members of a group are complete */
255 if (slots_per_op
!= 0 && slot_cnt
== 0) {
256 struct iop_adma_desc_slot
*grp_iter
, *_grp_iter
;
257 int end_of_chain
= 0;
258 pr_debug("\tgroup end\n");
260 /* collect the total results */
261 if (grp_start
->xor_check_result
) {
262 u32 zero_sum_result
= 0;
263 slot_cnt
= grp_start
->slot_cnt
;
264 grp_iter
= grp_start
;
266 list_for_each_entry_from(grp_iter
,
267 &iop_chan
->chain
, chain_node
) {
269 iop_desc_get_zero_result(grp_iter
);
270 pr_debug("\titer%d result: %d\n",
271 grp_iter
->idx
, zero_sum_result
);
272 slot_cnt
-= slots_per_op
;
276 pr_debug("\tgrp_start->xor_check_result: %p\n",
277 grp_start
->xor_check_result
);
278 *grp_start
->xor_check_result
= zero_sum_result
;
281 /* clean up the group */
282 slot_cnt
= grp_start
->slot_cnt
;
283 grp_iter
= grp_start
;
284 list_for_each_entry_safe_from(grp_iter
, _grp_iter
,
285 &iop_chan
->chain
, chain_node
) {
286 cookie
= iop_adma_run_tx_complete_actions(
287 grp_iter
, iop_chan
, cookie
);
289 slot_cnt
-= slots_per_op
;
290 end_of_chain
= iop_adma_clean_slot(grp_iter
,
293 if (slot_cnt
== 0 || end_of_chain
)
297 /* the group should be complete at this point */
306 } else if (slots_per_op
) /* wait for group completion */
309 /* write back zero sum results (single descriptor case) */
310 if (iter
->xor_check_result
&& iter
->async_tx
.cookie
)
311 *iter
->xor_check_result
=
312 iop_desc_get_zero_result(iter
);
314 cookie
= iop_adma_run_tx_complete_actions(
315 iter
, iop_chan
, cookie
);
317 if (iop_adma_clean_slot(iter
, iop_chan
))
322 iop_chan
->common
.completed_cookie
= cookie
;
323 pr_debug("\tcompleted cookie %d\n", cookie
);
328 iop_adma_slot_cleanup(struct iop_adma_chan
*iop_chan
)
330 spin_lock_bh(&iop_chan
->lock
);
331 __iop_adma_slot_cleanup(iop_chan
);
332 spin_unlock_bh(&iop_chan
->lock
);
335 static void iop_adma_tasklet(unsigned long data
)
337 struct iop_adma_chan
*iop_chan
= (struct iop_adma_chan
*) data
;
339 /* lockdep will flag depedency submissions as potentially
340 * recursive locking, this is not the case as a dependency
341 * submission will never recurse a channels submit routine.
342 * There are checks in async_tx.c to prevent this.
344 spin_lock_nested(&iop_chan
->lock
, SINGLE_DEPTH_NESTING
);
345 __iop_adma_slot_cleanup(iop_chan
);
346 spin_unlock(&iop_chan
->lock
);
349 static struct iop_adma_desc_slot
*
350 iop_adma_alloc_slots(struct iop_adma_chan
*iop_chan
, int num_slots
,
353 struct iop_adma_desc_slot
*iter
, *_iter
, *alloc_start
= NULL
;
355 int slots_found
, retry
= 0;
357 /* start search from the last allocated descrtiptor
358 * if a contiguous allocation can not be found start searching
359 * from the beginning of the list
364 iter
= iop_chan
->last_used
;
366 iter
= list_entry(&iop_chan
->all_slots
,
367 struct iop_adma_desc_slot
,
370 list_for_each_entry_safe_continue(
371 iter
, _iter
, &iop_chan
->all_slots
, slot_node
) {
373 prefetch(&_iter
->async_tx
);
374 if (iter
->slots_per_op
) {
375 /* give up after finding the first busy slot
376 * on the second pass through the list
385 /* start the allocation if the slot is correctly aligned */
386 if (!slots_found
++) {
387 if (iop_desc_is_aligned(iter
, slots_per_op
))
395 if (slots_found
== num_slots
) {
396 struct iop_adma_desc_slot
*alloc_tail
= NULL
;
397 struct iop_adma_desc_slot
*last_used
= NULL
;
401 dev_dbg(iop_chan
->device
->common
.dev
,
402 "allocated slot: %d "
403 "(desc %p phys: %#x) slots_per_op %d\n",
404 iter
->idx
, iter
->hw_desc
,
405 iter
->async_tx
.phys
, slots_per_op
);
407 /* pre-ack all but the last descriptor */
408 if (num_slots
!= slots_per_op
)
409 async_tx_ack(&iter
->async_tx
);
411 list_add_tail(&iter
->chain_node
, &chain
);
413 iter
->async_tx
.cookie
= 0;
414 iter
->slot_cnt
= num_slots
;
415 iter
->xor_check_result
= NULL
;
416 for (i
= 0; i
< slots_per_op
; i
++) {
417 iter
->slots_per_op
= slots_per_op
- i
;
419 iter
= list_entry(iter
->slot_node
.next
,
420 struct iop_adma_desc_slot
,
423 num_slots
-= slots_per_op
;
425 alloc_tail
->group_head
= alloc_start
;
426 alloc_tail
->async_tx
.cookie
= -EBUSY
;
427 list_splice(&chain
, &alloc_tail
->tx_list
);
428 iop_chan
->last_used
= last_used
;
429 iop_desc_clear_next_desc(alloc_start
);
430 iop_desc_clear_next_desc(alloc_tail
);
437 /* perform direct reclaim if the allocation fails */
438 __iop_adma_slot_cleanup(iop_chan
);
443 static void iop_adma_check_threshold(struct iop_adma_chan
*iop_chan
)
445 dev_dbg(iop_chan
->device
->common
.dev
, "pending: %d\n",
448 if (iop_chan
->pending
>= IOP_ADMA_THRESHOLD
) {
449 iop_chan
->pending
= 0;
450 iop_chan_append(iop_chan
);
455 iop_adma_tx_submit(struct dma_async_tx_descriptor
*tx
)
457 struct iop_adma_desc_slot
*sw_desc
= tx_to_iop_adma_slot(tx
);
458 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(tx
->chan
);
459 struct iop_adma_desc_slot
*grp_start
, *old_chain_tail
;
465 grp_start
= sw_desc
->group_head
;
466 slot_cnt
= grp_start
->slot_cnt
;
467 slots_per_op
= grp_start
->slots_per_op
;
469 spin_lock_bh(&iop_chan
->lock
);
470 cookie
= dma_cookie_assign(tx
);
472 old_chain_tail
= list_entry(iop_chan
->chain
.prev
,
473 struct iop_adma_desc_slot
, chain_node
);
474 list_splice_init(&sw_desc
->tx_list
,
475 &old_chain_tail
->chain_node
);
477 /* fix up the hardware chain */
478 next_dma
= grp_start
->async_tx
.phys
;
479 iop_desc_set_next_desc(old_chain_tail
, next_dma
);
480 BUG_ON(iop_desc_get_next_desc(old_chain_tail
) != next_dma
); /* flush */
482 /* check for pre-chained descriptors */
483 iop_paranoia(iop_desc_get_next_desc(sw_desc
));
485 /* increment the pending count by the number of slots
486 * memcpy operations have a 1:1 (slot:operation) relation
487 * other operations are heavier and will pop the threshold
490 iop_chan
->pending
+= slot_cnt
;
491 iop_adma_check_threshold(iop_chan
);
492 spin_unlock_bh(&iop_chan
->lock
);
494 dev_dbg(iop_chan
->device
->common
.dev
, "%s cookie: %d slot: %d\n",
495 __func__
, sw_desc
->async_tx
.cookie
, sw_desc
->idx
);
500 static void iop_chan_start_null_memcpy(struct iop_adma_chan
*iop_chan
);
501 static void iop_chan_start_null_xor(struct iop_adma_chan
*iop_chan
);
504 * iop_adma_alloc_chan_resources - returns the number of allocated descriptors
505 * @chan - allocate descriptor resources for this channel
506 * @client - current client requesting the channel be ready for requests
508 * Note: We keep the slots for 1 operation on iop_chan->chain at all times. To
509 * avoid deadlock, via async_xor, num_descs_in_pool must at a minimum be
510 * greater than 2x the number slots needed to satisfy a device->max_xor
513 static int iop_adma_alloc_chan_resources(struct dma_chan
*chan
)
517 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
518 struct iop_adma_desc_slot
*slot
= NULL
;
519 int init
= iop_chan
->slots_allocated
? 0 : 1;
520 struct iop_adma_platform_data
*plat_data
=
521 dev_get_platdata(&iop_chan
->device
->pdev
->dev
);
522 int num_descs_in_pool
= plat_data
->pool_size
/IOP_ADMA_SLOT_SIZE
;
524 /* Allocate descriptor slots */
526 idx
= iop_chan
->slots_allocated
;
527 if (idx
== num_descs_in_pool
)
530 slot
= kzalloc(sizeof(*slot
), GFP_KERNEL
);
532 printk(KERN_INFO
"IOP ADMA Channel only initialized"
533 " %d descriptor slots", idx
);
536 hw_desc
= (char *) iop_chan
->device
->dma_desc_pool_virt
;
537 slot
->hw_desc
= (void *) &hw_desc
[idx
* IOP_ADMA_SLOT_SIZE
];
539 dma_async_tx_descriptor_init(&slot
->async_tx
, chan
);
540 slot
->async_tx
.tx_submit
= iop_adma_tx_submit
;
541 INIT_LIST_HEAD(&slot
->tx_list
);
542 INIT_LIST_HEAD(&slot
->chain_node
);
543 INIT_LIST_HEAD(&slot
->slot_node
);
544 hw_desc
= (char *) iop_chan
->device
->dma_desc_pool
;
545 slot
->async_tx
.phys
=
546 (dma_addr_t
) &hw_desc
[idx
* IOP_ADMA_SLOT_SIZE
];
549 spin_lock_bh(&iop_chan
->lock
);
550 iop_chan
->slots_allocated
++;
551 list_add_tail(&slot
->slot_node
, &iop_chan
->all_slots
);
552 spin_unlock_bh(&iop_chan
->lock
);
553 } while (iop_chan
->slots_allocated
< num_descs_in_pool
);
555 if (idx
&& !iop_chan
->last_used
)
556 iop_chan
->last_used
= list_entry(iop_chan
->all_slots
.next
,
557 struct iop_adma_desc_slot
,
560 dev_dbg(iop_chan
->device
->common
.dev
,
561 "allocated %d descriptor slots last_used: %p\n",
562 iop_chan
->slots_allocated
, iop_chan
->last_used
);
564 /* initialize the channel and the chain with a null operation */
566 if (dma_has_cap(DMA_MEMCPY
,
567 iop_chan
->device
->common
.cap_mask
))
568 iop_chan_start_null_memcpy(iop_chan
);
569 else if (dma_has_cap(DMA_XOR
,
570 iop_chan
->device
->common
.cap_mask
))
571 iop_chan_start_null_xor(iop_chan
);
576 return (idx
> 0) ? idx
: -ENOMEM
;
579 static struct dma_async_tx_descriptor
*
580 iop_adma_prep_dma_interrupt(struct dma_chan
*chan
, unsigned long flags
)
582 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
583 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
584 int slot_cnt
, slots_per_op
;
586 dev_dbg(iop_chan
->device
->common
.dev
, "%s\n", __func__
);
588 spin_lock_bh(&iop_chan
->lock
);
589 slot_cnt
= iop_chan_interrupt_slot_count(&slots_per_op
, iop_chan
);
590 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
592 grp_start
= sw_desc
->group_head
;
593 iop_desc_init_interrupt(grp_start
, iop_chan
);
594 grp_start
->unmap_len
= 0;
595 sw_desc
->async_tx
.flags
= flags
;
597 spin_unlock_bh(&iop_chan
->lock
);
599 return sw_desc
? &sw_desc
->async_tx
: NULL
;
602 static struct dma_async_tx_descriptor
*
603 iop_adma_prep_dma_memcpy(struct dma_chan
*chan
, dma_addr_t dma_dest
,
604 dma_addr_t dma_src
, size_t len
, unsigned long flags
)
606 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
607 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
608 int slot_cnt
, slots_per_op
;
612 BUG_ON(len
> IOP_ADMA_MAX_BYTE_COUNT
);
614 dev_dbg(iop_chan
->device
->common
.dev
, "%s len: %u\n",
617 spin_lock_bh(&iop_chan
->lock
);
618 slot_cnt
= iop_chan_memcpy_slot_count(len
, &slots_per_op
);
619 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
621 grp_start
= sw_desc
->group_head
;
622 iop_desc_init_memcpy(grp_start
, flags
);
623 iop_desc_set_byte_count(grp_start
, iop_chan
, len
);
624 iop_desc_set_dest_addr(grp_start
, iop_chan
, dma_dest
);
625 iop_desc_set_memcpy_src_addr(grp_start
, dma_src
);
626 sw_desc
->unmap_src_cnt
= 1;
627 sw_desc
->unmap_len
= len
;
628 sw_desc
->async_tx
.flags
= flags
;
630 spin_unlock_bh(&iop_chan
->lock
);
632 return sw_desc
? &sw_desc
->async_tx
: NULL
;
635 static struct dma_async_tx_descriptor
*
636 iop_adma_prep_dma_xor(struct dma_chan
*chan
, dma_addr_t dma_dest
,
637 dma_addr_t
*dma_src
, unsigned int src_cnt
, size_t len
,
640 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
641 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
642 int slot_cnt
, slots_per_op
;
646 BUG_ON(len
> IOP_ADMA_XOR_MAX_BYTE_COUNT
);
648 dev_dbg(iop_chan
->device
->common
.dev
,
649 "%s src_cnt: %d len: %u flags: %lx\n",
650 __func__
, src_cnt
, len
, flags
);
652 spin_lock_bh(&iop_chan
->lock
);
653 slot_cnt
= iop_chan_xor_slot_count(len
, src_cnt
, &slots_per_op
);
654 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
656 grp_start
= sw_desc
->group_head
;
657 iop_desc_init_xor(grp_start
, src_cnt
, flags
);
658 iop_desc_set_byte_count(grp_start
, iop_chan
, len
);
659 iop_desc_set_dest_addr(grp_start
, iop_chan
, dma_dest
);
660 sw_desc
->unmap_src_cnt
= src_cnt
;
661 sw_desc
->unmap_len
= len
;
662 sw_desc
->async_tx
.flags
= flags
;
664 iop_desc_set_xor_src_addr(grp_start
, src_cnt
,
667 spin_unlock_bh(&iop_chan
->lock
);
669 return sw_desc
? &sw_desc
->async_tx
: NULL
;
672 static struct dma_async_tx_descriptor
*
673 iop_adma_prep_dma_xor_val(struct dma_chan
*chan
, dma_addr_t
*dma_src
,
674 unsigned int src_cnt
, size_t len
, u32
*result
,
677 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
678 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
679 int slot_cnt
, slots_per_op
;
684 dev_dbg(iop_chan
->device
->common
.dev
, "%s src_cnt: %d len: %u\n",
685 __func__
, src_cnt
, len
);
687 spin_lock_bh(&iop_chan
->lock
);
688 slot_cnt
= iop_chan_zero_sum_slot_count(len
, src_cnt
, &slots_per_op
);
689 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
691 grp_start
= sw_desc
->group_head
;
692 iop_desc_init_zero_sum(grp_start
, src_cnt
, flags
);
693 iop_desc_set_zero_sum_byte_count(grp_start
, len
);
694 grp_start
->xor_check_result
= result
;
695 pr_debug("\t%s: grp_start->xor_check_result: %p\n",
696 __func__
, grp_start
->xor_check_result
);
697 sw_desc
->unmap_src_cnt
= src_cnt
;
698 sw_desc
->unmap_len
= len
;
699 sw_desc
->async_tx
.flags
= flags
;
701 iop_desc_set_zero_sum_src_addr(grp_start
, src_cnt
,
704 spin_unlock_bh(&iop_chan
->lock
);
706 return sw_desc
? &sw_desc
->async_tx
: NULL
;
709 static struct dma_async_tx_descriptor
*
710 iop_adma_prep_dma_pq(struct dma_chan
*chan
, dma_addr_t
*dst
, dma_addr_t
*src
,
711 unsigned int src_cnt
, const unsigned char *scf
, size_t len
,
714 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
715 struct iop_adma_desc_slot
*sw_desc
, *g
;
716 int slot_cnt
, slots_per_op
;
721 BUG_ON(len
> IOP_ADMA_XOR_MAX_BYTE_COUNT
);
723 dev_dbg(iop_chan
->device
->common
.dev
,
724 "%s src_cnt: %d len: %u flags: %lx\n",
725 __func__
, src_cnt
, len
, flags
);
727 if (dmaf_p_disabled_continue(flags
))
728 continue_srcs
= 1+src_cnt
;
729 else if (dmaf_continue(flags
))
730 continue_srcs
= 3+src_cnt
;
732 continue_srcs
= 0+src_cnt
;
734 spin_lock_bh(&iop_chan
->lock
);
735 slot_cnt
= iop_chan_pq_slot_count(len
, continue_srcs
, &slots_per_op
);
736 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
740 g
= sw_desc
->group_head
;
741 iop_desc_set_byte_count(g
, iop_chan
, len
);
743 /* even if P is disabled its destination address (bits
744 * [3:0]) must match Q. It is ok if P points to an
745 * invalid address, it won't be written.
747 if (flags
& DMA_PREP_PQ_DISABLE_P
)
748 dst
[0] = dst
[1] & 0x7;
750 iop_desc_set_pq_addr(g
, dst
);
751 sw_desc
->unmap_src_cnt
= src_cnt
;
752 sw_desc
->unmap_len
= len
;
753 sw_desc
->async_tx
.flags
= flags
;
754 for (i
= 0; i
< src_cnt
; i
++)
755 iop_desc_set_pq_src_addr(g
, i
, src
[i
], scf
[i
]);
757 /* if we are continuing a previous operation factor in
758 * the old p and q values, see the comment for dma_maxpq
759 * in include/linux/dmaengine.h
761 if (dmaf_p_disabled_continue(flags
))
762 iop_desc_set_pq_src_addr(g
, i
++, dst
[1], 1);
763 else if (dmaf_continue(flags
)) {
764 iop_desc_set_pq_src_addr(g
, i
++, dst
[0], 0);
765 iop_desc_set_pq_src_addr(g
, i
++, dst
[1], 1);
766 iop_desc_set_pq_src_addr(g
, i
++, dst
[1], 0);
768 iop_desc_init_pq(g
, i
, flags
);
770 spin_unlock_bh(&iop_chan
->lock
);
772 return sw_desc
? &sw_desc
->async_tx
: NULL
;
775 static struct dma_async_tx_descriptor
*
776 iop_adma_prep_dma_pq_val(struct dma_chan
*chan
, dma_addr_t
*pq
, dma_addr_t
*src
,
777 unsigned int src_cnt
, const unsigned char *scf
,
778 size_t len
, enum sum_check_flags
*pqres
,
781 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
782 struct iop_adma_desc_slot
*sw_desc
, *g
;
783 int slot_cnt
, slots_per_op
;
787 BUG_ON(len
> IOP_ADMA_XOR_MAX_BYTE_COUNT
);
789 dev_dbg(iop_chan
->device
->common
.dev
, "%s src_cnt: %d len: %u\n",
790 __func__
, src_cnt
, len
);
792 spin_lock_bh(&iop_chan
->lock
);
793 slot_cnt
= iop_chan_pq_zero_sum_slot_count(len
, src_cnt
+ 2, &slots_per_op
);
794 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
796 /* for validate operations p and q are tagged onto the
797 * end of the source list
799 int pq_idx
= src_cnt
;
801 g
= sw_desc
->group_head
;
802 iop_desc_init_pq_zero_sum(g
, src_cnt
+2, flags
);
803 iop_desc_set_pq_zero_sum_byte_count(g
, len
);
804 g
->pq_check_result
= pqres
;
805 pr_debug("\t%s: g->pq_check_result: %p\n",
806 __func__
, g
->pq_check_result
);
807 sw_desc
->unmap_src_cnt
= src_cnt
+2;
808 sw_desc
->unmap_len
= len
;
809 sw_desc
->async_tx
.flags
= flags
;
811 iop_desc_set_pq_zero_sum_src_addr(g
, src_cnt
,
814 iop_desc_set_pq_zero_sum_addr(g
, pq_idx
, src
);
816 spin_unlock_bh(&iop_chan
->lock
);
818 return sw_desc
? &sw_desc
->async_tx
: NULL
;
821 static void iop_adma_free_chan_resources(struct dma_chan
*chan
)
823 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
824 struct iop_adma_desc_slot
*iter
, *_iter
;
825 int in_use_descs
= 0;
827 iop_adma_slot_cleanup(iop_chan
);
829 spin_lock_bh(&iop_chan
->lock
);
830 list_for_each_entry_safe(iter
, _iter
, &iop_chan
->chain
,
833 list_del(&iter
->chain_node
);
835 list_for_each_entry_safe_reverse(
836 iter
, _iter
, &iop_chan
->all_slots
, slot_node
) {
837 list_del(&iter
->slot_node
);
839 iop_chan
->slots_allocated
--;
841 iop_chan
->last_used
= NULL
;
843 dev_dbg(iop_chan
->device
->common
.dev
, "%s slots_allocated %d\n",
844 __func__
, iop_chan
->slots_allocated
);
845 spin_unlock_bh(&iop_chan
->lock
);
847 /* one is ok since we left it on there on purpose */
848 if (in_use_descs
> 1)
849 printk(KERN_ERR
"IOP: Freeing %d in use descriptors!\n",
854 * iop_adma_status - poll the status of an ADMA transaction
855 * @chan: ADMA channel handle
856 * @cookie: ADMA transaction identifier
857 * @txstate: a holder for the current state of the channel or NULL
859 static enum dma_status
iop_adma_status(struct dma_chan
*chan
,
861 struct dma_tx_state
*txstate
)
863 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
866 ret
= dma_cookie_status(chan
, cookie
, txstate
);
867 if (ret
== DMA_SUCCESS
)
870 iop_adma_slot_cleanup(iop_chan
);
872 return dma_cookie_status(chan
, cookie
, txstate
);
875 static irqreturn_t
iop_adma_eot_handler(int irq
, void *data
)
877 struct iop_adma_chan
*chan
= data
;
879 dev_dbg(chan
->device
->common
.dev
, "%s\n", __func__
);
881 tasklet_schedule(&chan
->irq_tasklet
);
883 iop_adma_device_clear_eot_status(chan
);
888 static irqreturn_t
iop_adma_eoc_handler(int irq
, void *data
)
890 struct iop_adma_chan
*chan
= data
;
892 dev_dbg(chan
->device
->common
.dev
, "%s\n", __func__
);
894 tasklet_schedule(&chan
->irq_tasklet
);
896 iop_adma_device_clear_eoc_status(chan
);
901 static irqreturn_t
iop_adma_err_handler(int irq
, void *data
)
903 struct iop_adma_chan
*chan
= data
;
904 unsigned long status
= iop_chan_get_status(chan
);
906 dev_err(chan
->device
->common
.dev
,
907 "error ( %s%s%s%s%s%s%s)\n",
908 iop_is_err_int_parity(status
, chan
) ? "int_parity " : "",
909 iop_is_err_mcu_abort(status
, chan
) ? "mcu_abort " : "",
910 iop_is_err_int_tabort(status
, chan
) ? "int_tabort " : "",
911 iop_is_err_int_mabort(status
, chan
) ? "int_mabort " : "",
912 iop_is_err_pci_tabort(status
, chan
) ? "pci_tabort " : "",
913 iop_is_err_pci_mabort(status
, chan
) ? "pci_mabort " : "",
914 iop_is_err_split_tx(status
, chan
) ? "split_tx " : "");
916 iop_adma_device_clear_err_status(chan
);
923 static void iop_adma_issue_pending(struct dma_chan
*chan
)
925 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
927 if (iop_chan
->pending
) {
928 iop_chan
->pending
= 0;
929 iop_chan_append(iop_chan
);
934 * Perform a transaction to verify the HW works.
936 #define IOP_ADMA_TEST_SIZE 2000
938 static int iop_adma_memcpy_self_test(struct iop_adma_device
*device
)
942 dma_addr_t src_dma
, dest_dma
;
943 struct dma_chan
*dma_chan
;
945 struct dma_async_tx_descriptor
*tx
;
947 struct iop_adma_chan
*iop_chan
;
949 dev_dbg(device
->common
.dev
, "%s\n", __func__
);
951 src
= kmalloc(IOP_ADMA_TEST_SIZE
, GFP_KERNEL
);
954 dest
= kzalloc(IOP_ADMA_TEST_SIZE
, GFP_KERNEL
);
960 /* Fill in src buffer */
961 for (i
= 0; i
< IOP_ADMA_TEST_SIZE
; i
++)
962 ((u8
*) src
)[i
] = (u8
)i
;
964 /* Start copy, using first DMA channel */
965 dma_chan
= container_of(device
->common
.channels
.next
,
968 if (iop_adma_alloc_chan_resources(dma_chan
) < 1) {
973 dest_dma
= dma_map_single(dma_chan
->device
->dev
, dest
,
974 IOP_ADMA_TEST_SIZE
, DMA_FROM_DEVICE
);
975 src_dma
= dma_map_single(dma_chan
->device
->dev
, src
,
976 IOP_ADMA_TEST_SIZE
, DMA_TO_DEVICE
);
977 tx
= iop_adma_prep_dma_memcpy(dma_chan
, dest_dma
, src_dma
,
979 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
981 cookie
= iop_adma_tx_submit(tx
);
982 iop_adma_issue_pending(dma_chan
);
985 if (iop_adma_status(dma_chan
, cookie
, NULL
) !=
987 dev_err(dma_chan
->device
->dev
,
988 "Self-test copy timed out, disabling\n");
993 iop_chan
= to_iop_adma_chan(dma_chan
);
994 dma_sync_single_for_cpu(&iop_chan
->device
->pdev
->dev
, dest_dma
,
995 IOP_ADMA_TEST_SIZE
, DMA_FROM_DEVICE
);
996 if (memcmp(src
, dest
, IOP_ADMA_TEST_SIZE
)) {
997 dev_err(dma_chan
->device
->dev
,
998 "Self-test copy failed compare, disabling\n");
1000 goto free_resources
;
1004 iop_adma_free_chan_resources(dma_chan
);
1011 #define IOP_ADMA_NUM_SRC_TEST 4 /* must be <= 15 */
1013 iop_adma_xor_val_self_test(struct iop_adma_device
*device
)
1017 struct page
*xor_srcs
[IOP_ADMA_NUM_SRC_TEST
];
1018 struct page
*zero_sum_srcs
[IOP_ADMA_NUM_SRC_TEST
+ 1];
1019 dma_addr_t dma_srcs
[IOP_ADMA_NUM_SRC_TEST
+ 1];
1020 dma_addr_t dest_dma
;
1021 struct dma_async_tx_descriptor
*tx
;
1022 struct dma_chan
*dma_chan
;
1023 dma_cookie_t cookie
;
1026 u32 zero_sum_result
;
1028 struct iop_adma_chan
*iop_chan
;
1030 dev_dbg(device
->common
.dev
, "%s\n", __func__
);
1032 for (src_idx
= 0; src_idx
< IOP_ADMA_NUM_SRC_TEST
; src_idx
++) {
1033 xor_srcs
[src_idx
] = alloc_page(GFP_KERNEL
);
1034 if (!xor_srcs
[src_idx
]) {
1036 __free_page(xor_srcs
[src_idx
]);
1041 dest
= alloc_page(GFP_KERNEL
);
1044 __free_page(xor_srcs
[src_idx
]);
1048 /* Fill in src buffers */
1049 for (src_idx
= 0; src_idx
< IOP_ADMA_NUM_SRC_TEST
; src_idx
++) {
1050 u8
*ptr
= page_address(xor_srcs
[src_idx
]);
1051 for (i
= 0; i
< PAGE_SIZE
; i
++)
1052 ptr
[i
] = (1 << src_idx
);
1055 for (src_idx
= 0; src_idx
< IOP_ADMA_NUM_SRC_TEST
; src_idx
++)
1056 cmp_byte
^= (u8
) (1 << src_idx
);
1058 cmp_word
= (cmp_byte
<< 24) | (cmp_byte
<< 16) |
1059 (cmp_byte
<< 8) | cmp_byte
;
1061 memset(page_address(dest
), 0, PAGE_SIZE
);
1063 dma_chan
= container_of(device
->common
.channels
.next
,
1066 if (iop_adma_alloc_chan_resources(dma_chan
) < 1) {
1072 dest_dma
= dma_map_page(dma_chan
->device
->dev
, dest
, 0,
1073 PAGE_SIZE
, DMA_FROM_DEVICE
);
1074 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
; i
++)
1075 dma_srcs
[i
] = dma_map_page(dma_chan
->device
->dev
, xor_srcs
[i
],
1076 0, PAGE_SIZE
, DMA_TO_DEVICE
);
1077 tx
= iop_adma_prep_dma_xor(dma_chan
, dest_dma
, dma_srcs
,
1078 IOP_ADMA_NUM_SRC_TEST
, PAGE_SIZE
,
1079 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
1081 cookie
= iop_adma_tx_submit(tx
);
1082 iop_adma_issue_pending(dma_chan
);
1085 if (iop_adma_status(dma_chan
, cookie
, NULL
) !=
1087 dev_err(dma_chan
->device
->dev
,
1088 "Self-test xor timed out, disabling\n");
1090 goto free_resources
;
1093 iop_chan
= to_iop_adma_chan(dma_chan
);
1094 dma_sync_single_for_cpu(&iop_chan
->device
->pdev
->dev
, dest_dma
,
1095 PAGE_SIZE
, DMA_FROM_DEVICE
);
1096 for (i
= 0; i
< (PAGE_SIZE
/ sizeof(u32
)); i
++) {
1097 u32
*ptr
= page_address(dest
);
1098 if (ptr
[i
] != cmp_word
) {
1099 dev_err(dma_chan
->device
->dev
,
1100 "Self-test xor failed compare, disabling\n");
1102 goto free_resources
;
1105 dma_sync_single_for_device(&iop_chan
->device
->pdev
->dev
, dest_dma
,
1106 PAGE_SIZE
, DMA_TO_DEVICE
);
1108 /* skip zero sum if the capability is not present */
1109 if (!dma_has_cap(DMA_XOR_VAL
, dma_chan
->device
->cap_mask
))
1110 goto free_resources
;
1112 /* zero sum the sources with the destintation page */
1113 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
; i
++)
1114 zero_sum_srcs
[i
] = xor_srcs
[i
];
1115 zero_sum_srcs
[i
] = dest
;
1117 zero_sum_result
= 1;
1119 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
+ 1; i
++)
1120 dma_srcs
[i
] = dma_map_page(dma_chan
->device
->dev
,
1121 zero_sum_srcs
[i
], 0, PAGE_SIZE
,
1123 tx
= iop_adma_prep_dma_xor_val(dma_chan
, dma_srcs
,
1124 IOP_ADMA_NUM_SRC_TEST
+ 1, PAGE_SIZE
,
1126 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
1128 cookie
= iop_adma_tx_submit(tx
);
1129 iop_adma_issue_pending(dma_chan
);
1132 if (iop_adma_status(dma_chan
, cookie
, NULL
) != DMA_SUCCESS
) {
1133 dev_err(dma_chan
->device
->dev
,
1134 "Self-test zero sum timed out, disabling\n");
1136 goto free_resources
;
1139 if (zero_sum_result
!= 0) {
1140 dev_err(dma_chan
->device
->dev
,
1141 "Self-test zero sum failed compare, disabling\n");
1143 goto free_resources
;
1146 /* test for non-zero parity sum */
1147 zero_sum_result
= 0;
1148 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
+ 1; i
++)
1149 dma_srcs
[i
] = dma_map_page(dma_chan
->device
->dev
,
1150 zero_sum_srcs
[i
], 0, PAGE_SIZE
,
1152 tx
= iop_adma_prep_dma_xor_val(dma_chan
, dma_srcs
,
1153 IOP_ADMA_NUM_SRC_TEST
+ 1, PAGE_SIZE
,
1155 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
1157 cookie
= iop_adma_tx_submit(tx
);
1158 iop_adma_issue_pending(dma_chan
);
1161 if (iop_adma_status(dma_chan
, cookie
, NULL
) != DMA_SUCCESS
) {
1162 dev_err(dma_chan
->device
->dev
,
1163 "Self-test non-zero sum timed out, disabling\n");
1165 goto free_resources
;
1168 if (zero_sum_result
!= 1) {
1169 dev_err(dma_chan
->device
->dev
,
1170 "Self-test non-zero sum failed compare, disabling\n");
1172 goto free_resources
;
1176 iop_adma_free_chan_resources(dma_chan
);
1178 src_idx
= IOP_ADMA_NUM_SRC_TEST
;
1180 __free_page(xor_srcs
[src_idx
]);
1185 #ifdef CONFIG_RAID6_PQ
1187 iop_adma_pq_zero_sum_self_test(struct iop_adma_device
*device
)
1189 /* combined sources, software pq results, and extra hw pq results */
1190 struct page
*pq
[IOP_ADMA_NUM_SRC_TEST
+2+2];
1191 /* ptr to the extra hw pq buffers defined above */
1192 struct page
**pq_hw
= &pq
[IOP_ADMA_NUM_SRC_TEST
+2];
1193 /* address conversion buffers (dma_map / page_address) */
1194 void *pq_sw
[IOP_ADMA_NUM_SRC_TEST
+2];
1195 dma_addr_t pq_src
[IOP_ADMA_NUM_SRC_TEST
+2];
1196 dma_addr_t
*pq_dest
= &pq_src
[IOP_ADMA_NUM_SRC_TEST
];
1199 struct dma_async_tx_descriptor
*tx
;
1200 struct dma_chan
*dma_chan
;
1201 dma_cookie_t cookie
;
1202 u32 zero_sum_result
;
1206 dev_dbg(device
->common
.dev
, "%s\n", __func__
);
1208 for (i
= 0; i
< ARRAY_SIZE(pq
); i
++) {
1209 pq
[i
] = alloc_page(GFP_KERNEL
);
1217 /* Fill in src buffers */
1218 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
; i
++) {
1219 pq_sw
[i
] = page_address(pq
[i
]);
1220 memset(pq_sw
[i
], 0x11111111 * (1<<i
), PAGE_SIZE
);
1222 pq_sw
[i
] = page_address(pq
[i
]);
1223 pq_sw
[i
+1] = page_address(pq
[i
+1]);
1225 dma_chan
= container_of(device
->common
.channels
.next
,
1228 if (iop_adma_alloc_chan_resources(dma_chan
) < 1) {
1233 dev
= dma_chan
->device
->dev
;
1235 /* initialize the dests */
1236 memset(page_address(pq_hw
[0]), 0 , PAGE_SIZE
);
1237 memset(page_address(pq_hw
[1]), 0 , PAGE_SIZE
);
1240 pq_dest
[0] = dma_map_page(dev
, pq_hw
[0], 0, PAGE_SIZE
, DMA_FROM_DEVICE
);
1241 pq_dest
[1] = dma_map_page(dev
, pq_hw
[1], 0, PAGE_SIZE
, DMA_FROM_DEVICE
);
1242 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
; i
++)
1243 pq_src
[i
] = dma_map_page(dev
, pq
[i
], 0, PAGE_SIZE
,
1246 tx
= iop_adma_prep_dma_pq(dma_chan
, pq_dest
, pq_src
,
1247 IOP_ADMA_NUM_SRC_TEST
, (u8
*)raid6_gfexp
,
1249 DMA_PREP_INTERRUPT
|
1252 cookie
= iop_adma_tx_submit(tx
);
1253 iop_adma_issue_pending(dma_chan
);
1256 if (iop_adma_status(dma_chan
, cookie
, NULL
) !=
1258 dev_err(dev
, "Self-test pq timed out, disabling\n");
1260 goto free_resources
;
1263 raid6_call
.gen_syndrome(IOP_ADMA_NUM_SRC_TEST
+2, PAGE_SIZE
, pq_sw
);
1265 if (memcmp(pq_sw
[IOP_ADMA_NUM_SRC_TEST
],
1266 page_address(pq_hw
[0]), PAGE_SIZE
) != 0) {
1267 dev_err(dev
, "Self-test p failed compare, disabling\n");
1269 goto free_resources
;
1271 if (memcmp(pq_sw
[IOP_ADMA_NUM_SRC_TEST
+1],
1272 page_address(pq_hw
[1]), PAGE_SIZE
) != 0) {
1273 dev_err(dev
, "Self-test q failed compare, disabling\n");
1275 goto free_resources
;
1278 /* test correct zero sum using the software generated pq values */
1279 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
+ 2; i
++)
1280 pq_src
[i
] = dma_map_page(dev
, pq
[i
], 0, PAGE_SIZE
,
1283 zero_sum_result
= ~0;
1284 tx
= iop_adma_prep_dma_pq_val(dma_chan
, &pq_src
[IOP_ADMA_NUM_SRC_TEST
],
1285 pq_src
, IOP_ADMA_NUM_SRC_TEST
,
1286 raid6_gfexp
, PAGE_SIZE
, &zero_sum_result
,
1287 DMA_PREP_INTERRUPT
|DMA_CTRL_ACK
);
1289 cookie
= iop_adma_tx_submit(tx
);
1290 iop_adma_issue_pending(dma_chan
);
1293 if (iop_adma_status(dma_chan
, cookie
, NULL
) !=
1295 dev_err(dev
, "Self-test pq-zero-sum timed out, disabling\n");
1297 goto free_resources
;
1300 if (zero_sum_result
!= 0) {
1301 dev_err(dev
, "Self-test pq-zero-sum failed to validate: %x\n",
1304 goto free_resources
;
1307 /* test incorrect zero sum */
1308 i
= IOP_ADMA_NUM_SRC_TEST
;
1309 memset(pq_sw
[i
] + 100, 0, 100);
1310 memset(pq_sw
[i
+1] + 200, 0, 200);
1311 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
+ 2; i
++)
1312 pq_src
[i
] = dma_map_page(dev
, pq
[i
], 0, PAGE_SIZE
,
1315 zero_sum_result
= 0;
1316 tx
= iop_adma_prep_dma_pq_val(dma_chan
, &pq_src
[IOP_ADMA_NUM_SRC_TEST
],
1317 pq_src
, IOP_ADMA_NUM_SRC_TEST
,
1318 raid6_gfexp
, PAGE_SIZE
, &zero_sum_result
,
1319 DMA_PREP_INTERRUPT
|DMA_CTRL_ACK
);
1321 cookie
= iop_adma_tx_submit(tx
);
1322 iop_adma_issue_pending(dma_chan
);
1325 if (iop_adma_status(dma_chan
, cookie
, NULL
) !=
1327 dev_err(dev
, "Self-test !pq-zero-sum timed out, disabling\n");
1329 goto free_resources
;
1332 if (zero_sum_result
!= (SUM_CHECK_P_RESULT
| SUM_CHECK_Q_RESULT
)) {
1333 dev_err(dev
, "Self-test !pq-zero-sum failed to validate: %x\n",
1336 goto free_resources
;
1340 iop_adma_free_chan_resources(dma_chan
);
1349 static int iop_adma_remove(struct platform_device
*dev
)
1351 struct iop_adma_device
*device
= platform_get_drvdata(dev
);
1352 struct dma_chan
*chan
, *_chan
;
1353 struct iop_adma_chan
*iop_chan
;
1354 struct iop_adma_platform_data
*plat_data
= dev_get_platdata(&dev
->dev
);
1356 dma_async_device_unregister(&device
->common
);
1358 dma_free_coherent(&dev
->dev
, plat_data
->pool_size
,
1359 device
->dma_desc_pool_virt
, device
->dma_desc_pool
);
1361 list_for_each_entry_safe(chan
, _chan
, &device
->common
.channels
,
1363 iop_chan
= to_iop_adma_chan(chan
);
1364 list_del(&chan
->device_node
);
1372 static int iop_adma_probe(struct platform_device
*pdev
)
1374 struct resource
*res
;
1376 struct iop_adma_device
*adev
;
1377 struct iop_adma_chan
*iop_chan
;
1378 struct dma_device
*dma_dev
;
1379 struct iop_adma_platform_data
*plat_data
= dev_get_platdata(&pdev
->dev
);
1381 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1385 if (!devm_request_mem_region(&pdev
->dev
, res
->start
,
1386 resource_size(res
), pdev
->name
))
1389 adev
= kzalloc(sizeof(*adev
), GFP_KERNEL
);
1392 dma_dev
= &adev
->common
;
1394 /* allocate coherent memory for hardware descriptors
1395 * note: writecombine gives slightly better performance, but
1396 * requires that we explicitly flush the writes
1398 if ((adev
->dma_desc_pool_virt
= dma_alloc_writecombine(&pdev
->dev
,
1399 plat_data
->pool_size
,
1400 &adev
->dma_desc_pool
,
1401 GFP_KERNEL
)) == NULL
) {
1406 dev_dbg(&pdev
->dev
, "%s: allocated descriptor pool virt %p phys %p\n",
1407 __func__
, adev
->dma_desc_pool_virt
,
1408 (void *) adev
->dma_desc_pool
);
1410 adev
->id
= plat_data
->hw_id
;
1412 /* discover transaction capabilites from the platform data */
1413 dma_dev
->cap_mask
= plat_data
->cap_mask
;
1416 platform_set_drvdata(pdev
, adev
);
1418 INIT_LIST_HEAD(&dma_dev
->channels
);
1420 /* set base routines */
1421 dma_dev
->device_alloc_chan_resources
= iop_adma_alloc_chan_resources
;
1422 dma_dev
->device_free_chan_resources
= iop_adma_free_chan_resources
;
1423 dma_dev
->device_tx_status
= iop_adma_status
;
1424 dma_dev
->device_issue_pending
= iop_adma_issue_pending
;
1425 dma_dev
->dev
= &pdev
->dev
;
1427 /* set prep routines based on capability */
1428 if (dma_has_cap(DMA_MEMCPY
, dma_dev
->cap_mask
))
1429 dma_dev
->device_prep_dma_memcpy
= iop_adma_prep_dma_memcpy
;
1430 if (dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
)) {
1431 dma_dev
->max_xor
= iop_adma_get_max_xor();
1432 dma_dev
->device_prep_dma_xor
= iop_adma_prep_dma_xor
;
1434 if (dma_has_cap(DMA_XOR_VAL
, dma_dev
->cap_mask
))
1435 dma_dev
->device_prep_dma_xor_val
=
1436 iop_adma_prep_dma_xor_val
;
1437 if (dma_has_cap(DMA_PQ
, dma_dev
->cap_mask
)) {
1438 dma_set_maxpq(dma_dev
, iop_adma_get_max_pq(), 0);
1439 dma_dev
->device_prep_dma_pq
= iop_adma_prep_dma_pq
;
1441 if (dma_has_cap(DMA_PQ_VAL
, dma_dev
->cap_mask
))
1442 dma_dev
->device_prep_dma_pq_val
=
1443 iop_adma_prep_dma_pq_val
;
1444 if (dma_has_cap(DMA_INTERRUPT
, dma_dev
->cap_mask
))
1445 dma_dev
->device_prep_dma_interrupt
=
1446 iop_adma_prep_dma_interrupt
;
1448 iop_chan
= kzalloc(sizeof(*iop_chan
), GFP_KERNEL
);
1453 iop_chan
->device
= adev
;
1455 iop_chan
->mmr_base
= devm_ioremap(&pdev
->dev
, res
->start
,
1456 resource_size(res
));
1457 if (!iop_chan
->mmr_base
) {
1459 goto err_free_iop_chan
;
1461 tasklet_init(&iop_chan
->irq_tasklet
, iop_adma_tasklet
, (unsigned long)
1464 /* clear errors before enabling interrupts */
1465 iop_adma_device_clear_err_status(iop_chan
);
1467 for (i
= 0; i
< 3; i
++) {
1468 irq_handler_t handler
[] = { iop_adma_eot_handler
,
1469 iop_adma_eoc_handler
,
1470 iop_adma_err_handler
};
1471 int irq
= platform_get_irq(pdev
, i
);
1474 goto err_free_iop_chan
;
1476 ret
= devm_request_irq(&pdev
->dev
, irq
,
1477 handler
[i
], 0, pdev
->name
, iop_chan
);
1479 goto err_free_iop_chan
;
1483 spin_lock_init(&iop_chan
->lock
);
1484 INIT_LIST_HEAD(&iop_chan
->chain
);
1485 INIT_LIST_HEAD(&iop_chan
->all_slots
);
1486 iop_chan
->common
.device
= dma_dev
;
1487 dma_cookie_init(&iop_chan
->common
);
1488 list_add_tail(&iop_chan
->common
.device_node
, &dma_dev
->channels
);
1490 if (dma_has_cap(DMA_MEMCPY
, dma_dev
->cap_mask
)) {
1491 ret
= iop_adma_memcpy_self_test(adev
);
1492 dev_dbg(&pdev
->dev
, "memcpy self test returned %d\n", ret
);
1494 goto err_free_iop_chan
;
1497 if (dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
)) {
1498 ret
= iop_adma_xor_val_self_test(adev
);
1499 dev_dbg(&pdev
->dev
, "xor self test returned %d\n", ret
);
1501 goto err_free_iop_chan
;
1504 if (dma_has_cap(DMA_PQ
, dma_dev
->cap_mask
) &&
1505 dma_has_cap(DMA_PQ_VAL
, dma_dev
->cap_mask
)) {
1506 #ifdef CONFIG_RAID6_PQ
1507 ret
= iop_adma_pq_zero_sum_self_test(adev
);
1508 dev_dbg(&pdev
->dev
, "pq self test returned %d\n", ret
);
1510 /* can not test raid6, so do not publish capability */
1511 dma_cap_clear(DMA_PQ
, dma_dev
->cap_mask
);
1512 dma_cap_clear(DMA_PQ_VAL
, dma_dev
->cap_mask
);
1516 goto err_free_iop_chan
;
1519 dev_info(&pdev
->dev
, "Intel(R) IOP: ( %s%s%s%s%s%s)\n",
1520 dma_has_cap(DMA_PQ
, dma_dev
->cap_mask
) ? "pq " : "",
1521 dma_has_cap(DMA_PQ_VAL
, dma_dev
->cap_mask
) ? "pq_val " : "",
1522 dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
) ? "xor " : "",
1523 dma_has_cap(DMA_XOR_VAL
, dma_dev
->cap_mask
) ? "xor_val " : "",
1524 dma_has_cap(DMA_MEMCPY
, dma_dev
->cap_mask
) ? "cpy " : "",
1525 dma_has_cap(DMA_INTERRUPT
, dma_dev
->cap_mask
) ? "intr " : "");
1527 dma_async_device_register(dma_dev
);
1533 dma_free_coherent(&adev
->pdev
->dev
, plat_data
->pool_size
,
1534 adev
->dma_desc_pool_virt
, adev
->dma_desc_pool
);
1541 static void iop_chan_start_null_memcpy(struct iop_adma_chan
*iop_chan
)
1543 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
1544 dma_cookie_t cookie
;
1545 int slot_cnt
, slots_per_op
;
1547 dev_dbg(iop_chan
->device
->common
.dev
, "%s\n", __func__
);
1549 spin_lock_bh(&iop_chan
->lock
);
1550 slot_cnt
= iop_chan_memcpy_slot_count(0, &slots_per_op
);
1551 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
1553 grp_start
= sw_desc
->group_head
;
1555 list_splice_init(&sw_desc
->tx_list
, &iop_chan
->chain
);
1556 async_tx_ack(&sw_desc
->async_tx
);
1557 iop_desc_init_memcpy(grp_start
, 0);
1558 iop_desc_set_byte_count(grp_start
, iop_chan
, 0);
1559 iop_desc_set_dest_addr(grp_start
, iop_chan
, 0);
1560 iop_desc_set_memcpy_src_addr(grp_start
, 0);
1562 cookie
= dma_cookie_assign(&sw_desc
->async_tx
);
1564 /* initialize the completed cookie to be less than
1565 * the most recently used cookie
1567 iop_chan
->common
.completed_cookie
= cookie
- 1;
1569 /* channel should not be busy */
1570 BUG_ON(iop_chan_is_busy(iop_chan
));
1572 /* clear any prior error-status bits */
1573 iop_adma_device_clear_err_status(iop_chan
);
1575 /* disable operation */
1576 iop_chan_disable(iop_chan
);
1578 /* set the descriptor address */
1579 iop_chan_set_next_descriptor(iop_chan
, sw_desc
->async_tx
.phys
);
1581 /* 1/ don't add pre-chained descriptors
1582 * 2/ dummy read to flush next_desc write
1584 BUG_ON(iop_desc_get_next_desc(sw_desc
));
1586 /* run the descriptor */
1587 iop_chan_enable(iop_chan
);
1589 dev_err(iop_chan
->device
->common
.dev
,
1590 "failed to allocate null descriptor\n");
1591 spin_unlock_bh(&iop_chan
->lock
);
1594 static void iop_chan_start_null_xor(struct iop_adma_chan
*iop_chan
)
1596 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
1597 dma_cookie_t cookie
;
1598 int slot_cnt
, slots_per_op
;
1600 dev_dbg(iop_chan
->device
->common
.dev
, "%s\n", __func__
);
1602 spin_lock_bh(&iop_chan
->lock
);
1603 slot_cnt
= iop_chan_xor_slot_count(0, 2, &slots_per_op
);
1604 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
1606 grp_start
= sw_desc
->group_head
;
1607 list_splice_init(&sw_desc
->tx_list
, &iop_chan
->chain
);
1608 async_tx_ack(&sw_desc
->async_tx
);
1609 iop_desc_init_null_xor(grp_start
, 2, 0);
1610 iop_desc_set_byte_count(grp_start
, iop_chan
, 0);
1611 iop_desc_set_dest_addr(grp_start
, iop_chan
, 0);
1612 iop_desc_set_xor_src_addr(grp_start
, 0, 0);
1613 iop_desc_set_xor_src_addr(grp_start
, 1, 0);
1615 cookie
= dma_cookie_assign(&sw_desc
->async_tx
);
1617 /* initialize the completed cookie to be less than
1618 * the most recently used cookie
1620 iop_chan
->common
.completed_cookie
= cookie
- 1;
1622 /* channel should not be busy */
1623 BUG_ON(iop_chan_is_busy(iop_chan
));
1625 /* clear any prior error-status bits */
1626 iop_adma_device_clear_err_status(iop_chan
);
1628 /* disable operation */
1629 iop_chan_disable(iop_chan
);
1631 /* set the descriptor address */
1632 iop_chan_set_next_descriptor(iop_chan
, sw_desc
->async_tx
.phys
);
1634 /* 1/ don't add pre-chained descriptors
1635 * 2/ dummy read to flush next_desc write
1637 BUG_ON(iop_desc_get_next_desc(sw_desc
));
1639 /* run the descriptor */
1640 iop_chan_enable(iop_chan
);
1642 dev_err(iop_chan
->device
->common
.dev
,
1643 "failed to allocate null descriptor\n");
1644 spin_unlock_bh(&iop_chan
->lock
);
1647 static struct platform_driver iop_adma_driver
= {
1648 .probe
= iop_adma_probe
,
1649 .remove
= iop_adma_remove
,
1651 .owner
= THIS_MODULE
,
1656 module_platform_driver(iop_adma_driver
);
1658 MODULE_AUTHOR("Intel Corporation");
1659 MODULE_DESCRIPTION("IOP ADMA Engine Driver");
1660 MODULE_LICENSE("GPL");
1661 MODULE_ALIAS("platform:iop-adma");