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
17 * This driver supports the asynchrounous DMA copy and RAID engines available
18 * on the Intel Xscale(R) family of I/O Processors (IOP 32x, 33x, 134x)
21 #include <linux/init.h>
22 #include <linux/module.h>
23 #include <linux/delay.h>
24 #include <linux/dma-mapping.h>
25 #include <linux/spinlock.h>
26 #include <linux/interrupt.h>
27 #include <linux/platform_device.h>
28 #include <linux/memory.h>
29 #include <linux/ioport.h>
30 #include <linux/raid/pq.h>
31 #include <linux/slab.h>
33 #include <mach/adma.h>
35 #include "dmaengine.h"
37 #define to_iop_adma_chan(chan) container_of(chan, struct iop_adma_chan, common)
38 #define to_iop_adma_device(dev) \
39 container_of(dev, struct iop_adma_device, common)
40 #define tx_to_iop_adma_slot(tx) \
41 container_of(tx, struct iop_adma_desc_slot, async_tx)
44 * iop_adma_free_slots - flags descriptor slots for reuse
46 * Caller must hold &iop_chan->lock while calling this function
48 static void iop_adma_free_slots(struct iop_adma_desc_slot
*slot
)
50 int stride
= slot
->slots_per_op
;
53 slot
->slots_per_op
= 0;
54 slot
= list_entry(slot
->slot_node
.next
,
55 struct iop_adma_desc_slot
,
61 iop_adma_run_tx_complete_actions(struct iop_adma_desc_slot
*desc
,
62 struct iop_adma_chan
*iop_chan
, dma_cookie_t cookie
)
64 struct dma_async_tx_descriptor
*tx
= &desc
->async_tx
;
66 BUG_ON(tx
->cookie
< 0);
71 /* call the callback (must not sleep or submit new
72 * operations to this channel)
75 tx
->callback(tx
->callback_param
);
77 dma_descriptor_unmap(tx
);
79 desc
->group_head
= NULL
;
82 /* run dependent operations */
83 dma_run_dependencies(tx
);
89 iop_adma_clean_slot(struct iop_adma_desc_slot
*desc
,
90 struct iop_adma_chan
*iop_chan
)
92 /* the client is allowed to attach dependent operations
95 if (!async_tx_test_ack(&desc
->async_tx
))
98 /* leave the last descriptor in the chain
99 * so we can append to it
101 if (desc
->chain_node
.next
== &iop_chan
->chain
)
104 dev_dbg(iop_chan
->device
->common
.dev
,
105 "\tfree slot: %d slots_per_op: %d\n",
106 desc
->idx
, desc
->slots_per_op
);
108 list_del(&desc
->chain_node
);
109 iop_adma_free_slots(desc
);
114 static void __iop_adma_slot_cleanup(struct iop_adma_chan
*iop_chan
)
116 struct iop_adma_desc_slot
*iter
, *_iter
, *grp_start
= NULL
;
117 dma_cookie_t cookie
= 0;
118 u32 current_desc
= iop_chan_get_current_descriptor(iop_chan
);
119 int busy
= iop_chan_is_busy(iop_chan
);
120 int seen_current
= 0, slot_cnt
= 0, slots_per_op
= 0;
122 dev_dbg(iop_chan
->device
->common
.dev
, "%s\n", __func__
);
123 /* free completed slots from the chain starting with
124 * the oldest descriptor
126 list_for_each_entry_safe(iter
, _iter
, &iop_chan
->chain
,
128 pr_debug("\tcookie: %d slot: %d busy: %d "
129 "this_desc: %#x next_desc: %#x ack: %d\n",
130 iter
->async_tx
.cookie
, iter
->idx
, busy
,
131 iter
->async_tx
.phys
, iop_desc_get_next_desc(iter
),
132 async_tx_test_ack(&iter
->async_tx
));
134 prefetch(&_iter
->async_tx
);
136 /* do not advance past the current descriptor loaded into the
137 * hardware channel, subsequent descriptors are either in
138 * process or have not been submitted
143 /* stop the search if we reach the current descriptor and the
144 * channel is busy, or if it appears that the current descriptor
145 * needs to be re-read (i.e. has been appended to)
147 if (iter
->async_tx
.phys
== current_desc
) {
148 BUG_ON(seen_current
++);
149 if (busy
|| iop_desc_get_next_desc(iter
))
153 /* detect the start of a group transaction */
154 if (!slot_cnt
&& !slots_per_op
) {
155 slot_cnt
= iter
->slot_cnt
;
156 slots_per_op
= iter
->slots_per_op
;
157 if (slot_cnt
<= slots_per_op
) {
164 pr_debug("\tgroup++\n");
167 slot_cnt
-= slots_per_op
;
170 /* all the members of a group are complete */
171 if (slots_per_op
!= 0 && slot_cnt
== 0) {
172 struct iop_adma_desc_slot
*grp_iter
, *_grp_iter
;
173 int end_of_chain
= 0;
174 pr_debug("\tgroup end\n");
176 /* collect the total results */
177 if (grp_start
->xor_check_result
) {
178 u32 zero_sum_result
= 0;
179 slot_cnt
= grp_start
->slot_cnt
;
180 grp_iter
= grp_start
;
182 list_for_each_entry_from(grp_iter
,
183 &iop_chan
->chain
, chain_node
) {
185 iop_desc_get_zero_result(grp_iter
);
186 pr_debug("\titer%d result: %d\n",
187 grp_iter
->idx
, zero_sum_result
);
188 slot_cnt
-= slots_per_op
;
192 pr_debug("\tgrp_start->xor_check_result: %p\n",
193 grp_start
->xor_check_result
);
194 *grp_start
->xor_check_result
= zero_sum_result
;
197 /* clean up the group */
198 slot_cnt
= grp_start
->slot_cnt
;
199 grp_iter
= grp_start
;
200 list_for_each_entry_safe_from(grp_iter
, _grp_iter
,
201 &iop_chan
->chain
, chain_node
) {
202 cookie
= iop_adma_run_tx_complete_actions(
203 grp_iter
, iop_chan
, cookie
);
205 slot_cnt
-= slots_per_op
;
206 end_of_chain
= iop_adma_clean_slot(grp_iter
,
209 if (slot_cnt
== 0 || end_of_chain
)
213 /* the group should be complete at this point */
222 } else if (slots_per_op
) /* wait for group completion */
225 /* write back zero sum results (single descriptor case) */
226 if (iter
->xor_check_result
&& iter
->async_tx
.cookie
)
227 *iter
->xor_check_result
=
228 iop_desc_get_zero_result(iter
);
230 cookie
= iop_adma_run_tx_complete_actions(
231 iter
, iop_chan
, cookie
);
233 if (iop_adma_clean_slot(iter
, iop_chan
))
238 iop_chan
->common
.completed_cookie
= cookie
;
239 pr_debug("\tcompleted cookie %d\n", cookie
);
244 iop_adma_slot_cleanup(struct iop_adma_chan
*iop_chan
)
246 spin_lock_bh(&iop_chan
->lock
);
247 __iop_adma_slot_cleanup(iop_chan
);
248 spin_unlock_bh(&iop_chan
->lock
);
251 static void iop_adma_tasklet(unsigned long data
)
253 struct iop_adma_chan
*iop_chan
= (struct iop_adma_chan
*) data
;
255 /* lockdep will flag depedency submissions as potentially
256 * recursive locking, this is not the case as a dependency
257 * submission will never recurse a channels submit routine.
258 * There are checks in async_tx.c to prevent this.
260 spin_lock_nested(&iop_chan
->lock
, SINGLE_DEPTH_NESTING
);
261 __iop_adma_slot_cleanup(iop_chan
);
262 spin_unlock(&iop_chan
->lock
);
265 static struct iop_adma_desc_slot
*
266 iop_adma_alloc_slots(struct iop_adma_chan
*iop_chan
, int num_slots
,
269 struct iop_adma_desc_slot
*iter
, *_iter
, *alloc_start
= NULL
;
271 int slots_found
, retry
= 0;
273 /* start search from the last allocated descrtiptor
274 * if a contiguous allocation can not be found start searching
275 * from the beginning of the list
280 iter
= iop_chan
->last_used
;
282 iter
= list_entry(&iop_chan
->all_slots
,
283 struct iop_adma_desc_slot
,
286 list_for_each_entry_safe_continue(
287 iter
, _iter
, &iop_chan
->all_slots
, slot_node
) {
289 prefetch(&_iter
->async_tx
);
290 if (iter
->slots_per_op
) {
291 /* give up after finding the first busy slot
292 * on the second pass through the list
301 /* start the allocation if the slot is correctly aligned */
302 if (!slots_found
++) {
303 if (iop_desc_is_aligned(iter
, slots_per_op
))
311 if (slots_found
== num_slots
) {
312 struct iop_adma_desc_slot
*alloc_tail
= NULL
;
313 struct iop_adma_desc_slot
*last_used
= NULL
;
317 dev_dbg(iop_chan
->device
->common
.dev
,
318 "allocated slot: %d "
319 "(desc %p phys: %#x) slots_per_op %d\n",
320 iter
->idx
, iter
->hw_desc
,
321 iter
->async_tx
.phys
, slots_per_op
);
323 /* pre-ack all but the last descriptor */
324 if (num_slots
!= slots_per_op
)
325 async_tx_ack(&iter
->async_tx
);
327 list_add_tail(&iter
->chain_node
, &chain
);
329 iter
->async_tx
.cookie
= 0;
330 iter
->slot_cnt
= num_slots
;
331 iter
->xor_check_result
= NULL
;
332 for (i
= 0; i
< slots_per_op
; i
++) {
333 iter
->slots_per_op
= slots_per_op
- i
;
335 iter
= list_entry(iter
->slot_node
.next
,
336 struct iop_adma_desc_slot
,
339 num_slots
-= slots_per_op
;
341 alloc_tail
->group_head
= alloc_start
;
342 alloc_tail
->async_tx
.cookie
= -EBUSY
;
343 list_splice(&chain
, &alloc_tail
->tx_list
);
344 iop_chan
->last_used
= last_used
;
345 iop_desc_clear_next_desc(alloc_start
);
346 iop_desc_clear_next_desc(alloc_tail
);
353 /* perform direct reclaim if the allocation fails */
354 __iop_adma_slot_cleanup(iop_chan
);
359 static void iop_adma_check_threshold(struct iop_adma_chan
*iop_chan
)
361 dev_dbg(iop_chan
->device
->common
.dev
, "pending: %d\n",
364 if (iop_chan
->pending
>= IOP_ADMA_THRESHOLD
) {
365 iop_chan
->pending
= 0;
366 iop_chan_append(iop_chan
);
371 iop_adma_tx_submit(struct dma_async_tx_descriptor
*tx
)
373 struct iop_adma_desc_slot
*sw_desc
= tx_to_iop_adma_slot(tx
);
374 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(tx
->chan
);
375 struct iop_adma_desc_slot
*grp_start
, *old_chain_tail
;
381 grp_start
= sw_desc
->group_head
;
382 slot_cnt
= grp_start
->slot_cnt
;
383 slots_per_op
= grp_start
->slots_per_op
;
385 spin_lock_bh(&iop_chan
->lock
);
386 cookie
= dma_cookie_assign(tx
);
388 old_chain_tail
= list_entry(iop_chan
->chain
.prev
,
389 struct iop_adma_desc_slot
, chain_node
);
390 list_splice_init(&sw_desc
->tx_list
,
391 &old_chain_tail
->chain_node
);
393 /* fix up the hardware chain */
394 next_dma
= grp_start
->async_tx
.phys
;
395 iop_desc_set_next_desc(old_chain_tail
, next_dma
);
396 BUG_ON(iop_desc_get_next_desc(old_chain_tail
) != next_dma
); /* flush */
398 /* check for pre-chained descriptors */
399 iop_paranoia(iop_desc_get_next_desc(sw_desc
));
401 /* increment the pending count by the number of slots
402 * memcpy operations have a 1:1 (slot:operation) relation
403 * other operations are heavier and will pop the threshold
406 iop_chan
->pending
+= slot_cnt
;
407 iop_adma_check_threshold(iop_chan
);
408 spin_unlock_bh(&iop_chan
->lock
);
410 dev_dbg(iop_chan
->device
->common
.dev
, "%s cookie: %d slot: %d\n",
411 __func__
, sw_desc
->async_tx
.cookie
, sw_desc
->idx
);
416 static void iop_chan_start_null_memcpy(struct iop_adma_chan
*iop_chan
);
417 static void iop_chan_start_null_xor(struct iop_adma_chan
*iop_chan
);
420 * iop_adma_alloc_chan_resources - returns the number of allocated descriptors
421 * @chan - allocate descriptor resources for this channel
422 * @client - current client requesting the channel be ready for requests
424 * Note: We keep the slots for 1 operation on iop_chan->chain at all times. To
425 * avoid deadlock, via async_xor, num_descs_in_pool must at a minimum be
426 * greater than 2x the number slots needed to satisfy a device->max_xor
429 static int iop_adma_alloc_chan_resources(struct dma_chan
*chan
)
433 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
434 struct iop_adma_desc_slot
*slot
= NULL
;
435 int init
= iop_chan
->slots_allocated
? 0 : 1;
436 struct iop_adma_platform_data
*plat_data
=
437 dev_get_platdata(&iop_chan
->device
->pdev
->dev
);
438 int num_descs_in_pool
= plat_data
->pool_size
/IOP_ADMA_SLOT_SIZE
;
440 /* Allocate descriptor slots */
442 idx
= iop_chan
->slots_allocated
;
443 if (idx
== num_descs_in_pool
)
446 slot
= kzalloc(sizeof(*slot
), GFP_KERNEL
);
448 printk(KERN_INFO
"IOP ADMA Channel only initialized"
449 " %d descriptor slots", idx
);
452 hw_desc
= (char *) iop_chan
->device
->dma_desc_pool_virt
;
453 slot
->hw_desc
= (void *) &hw_desc
[idx
* IOP_ADMA_SLOT_SIZE
];
455 dma_async_tx_descriptor_init(&slot
->async_tx
, chan
);
456 slot
->async_tx
.tx_submit
= iop_adma_tx_submit
;
457 INIT_LIST_HEAD(&slot
->tx_list
);
458 INIT_LIST_HEAD(&slot
->chain_node
);
459 INIT_LIST_HEAD(&slot
->slot_node
);
460 hw_desc
= (char *) iop_chan
->device
->dma_desc_pool
;
461 slot
->async_tx
.phys
=
462 (dma_addr_t
) &hw_desc
[idx
* IOP_ADMA_SLOT_SIZE
];
465 spin_lock_bh(&iop_chan
->lock
);
466 iop_chan
->slots_allocated
++;
467 list_add_tail(&slot
->slot_node
, &iop_chan
->all_slots
);
468 spin_unlock_bh(&iop_chan
->lock
);
469 } while (iop_chan
->slots_allocated
< num_descs_in_pool
);
471 if (idx
&& !iop_chan
->last_used
)
472 iop_chan
->last_used
= list_entry(iop_chan
->all_slots
.next
,
473 struct iop_adma_desc_slot
,
476 dev_dbg(iop_chan
->device
->common
.dev
,
477 "allocated %d descriptor slots last_used: %p\n",
478 iop_chan
->slots_allocated
, iop_chan
->last_used
);
480 /* initialize the channel and the chain with a null operation */
482 if (dma_has_cap(DMA_MEMCPY
,
483 iop_chan
->device
->common
.cap_mask
))
484 iop_chan_start_null_memcpy(iop_chan
);
485 else if (dma_has_cap(DMA_XOR
,
486 iop_chan
->device
->common
.cap_mask
))
487 iop_chan_start_null_xor(iop_chan
);
492 return (idx
> 0) ? idx
: -ENOMEM
;
495 static struct dma_async_tx_descriptor
*
496 iop_adma_prep_dma_interrupt(struct dma_chan
*chan
, unsigned long flags
)
498 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
499 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
500 int slot_cnt
, slots_per_op
;
502 dev_dbg(iop_chan
->device
->common
.dev
, "%s\n", __func__
);
504 spin_lock_bh(&iop_chan
->lock
);
505 slot_cnt
= iop_chan_interrupt_slot_count(&slots_per_op
, iop_chan
);
506 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
508 grp_start
= sw_desc
->group_head
;
509 iop_desc_init_interrupt(grp_start
, iop_chan
);
510 sw_desc
->async_tx
.flags
= flags
;
512 spin_unlock_bh(&iop_chan
->lock
);
514 return sw_desc
? &sw_desc
->async_tx
: NULL
;
517 static struct dma_async_tx_descriptor
*
518 iop_adma_prep_dma_memcpy(struct dma_chan
*chan
, dma_addr_t dma_dest
,
519 dma_addr_t dma_src
, size_t len
, unsigned long flags
)
521 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
522 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
523 int slot_cnt
, slots_per_op
;
527 BUG_ON(len
> IOP_ADMA_MAX_BYTE_COUNT
);
529 dev_dbg(iop_chan
->device
->common
.dev
, "%s len: %u\n",
532 spin_lock_bh(&iop_chan
->lock
);
533 slot_cnt
= iop_chan_memcpy_slot_count(len
, &slots_per_op
);
534 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
536 grp_start
= sw_desc
->group_head
;
537 iop_desc_init_memcpy(grp_start
, flags
);
538 iop_desc_set_byte_count(grp_start
, iop_chan
, len
);
539 iop_desc_set_dest_addr(grp_start
, iop_chan
, dma_dest
);
540 iop_desc_set_memcpy_src_addr(grp_start
, dma_src
);
541 sw_desc
->async_tx
.flags
= flags
;
543 spin_unlock_bh(&iop_chan
->lock
);
545 return sw_desc
? &sw_desc
->async_tx
: NULL
;
548 static struct dma_async_tx_descriptor
*
549 iop_adma_prep_dma_xor(struct dma_chan
*chan
, dma_addr_t dma_dest
,
550 dma_addr_t
*dma_src
, unsigned int src_cnt
, size_t len
,
553 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
554 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
555 int slot_cnt
, slots_per_op
;
559 BUG_ON(len
> IOP_ADMA_XOR_MAX_BYTE_COUNT
);
561 dev_dbg(iop_chan
->device
->common
.dev
,
562 "%s src_cnt: %d len: %u flags: %lx\n",
563 __func__
, src_cnt
, len
, flags
);
565 spin_lock_bh(&iop_chan
->lock
);
566 slot_cnt
= iop_chan_xor_slot_count(len
, src_cnt
, &slots_per_op
);
567 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
569 grp_start
= sw_desc
->group_head
;
570 iop_desc_init_xor(grp_start
, src_cnt
, flags
);
571 iop_desc_set_byte_count(grp_start
, iop_chan
, len
);
572 iop_desc_set_dest_addr(grp_start
, iop_chan
, dma_dest
);
573 sw_desc
->async_tx
.flags
= flags
;
575 iop_desc_set_xor_src_addr(grp_start
, src_cnt
,
578 spin_unlock_bh(&iop_chan
->lock
);
580 return sw_desc
? &sw_desc
->async_tx
: NULL
;
583 static struct dma_async_tx_descriptor
*
584 iop_adma_prep_dma_xor_val(struct dma_chan
*chan
, dma_addr_t
*dma_src
,
585 unsigned int src_cnt
, size_t len
, u32
*result
,
588 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
589 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
590 int slot_cnt
, slots_per_op
;
595 dev_dbg(iop_chan
->device
->common
.dev
, "%s src_cnt: %d len: %u\n",
596 __func__
, src_cnt
, len
);
598 spin_lock_bh(&iop_chan
->lock
);
599 slot_cnt
= iop_chan_zero_sum_slot_count(len
, src_cnt
, &slots_per_op
);
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_zero_sum(grp_start
, src_cnt
, flags
);
604 iop_desc_set_zero_sum_byte_count(grp_start
, len
);
605 grp_start
->xor_check_result
= result
;
606 pr_debug("\t%s: grp_start->xor_check_result: %p\n",
607 __func__
, grp_start
->xor_check_result
);
608 sw_desc
->async_tx
.flags
= flags
;
610 iop_desc_set_zero_sum_src_addr(grp_start
, src_cnt
,
613 spin_unlock_bh(&iop_chan
->lock
);
615 return sw_desc
? &sw_desc
->async_tx
: NULL
;
618 static struct dma_async_tx_descriptor
*
619 iop_adma_prep_dma_pq(struct dma_chan
*chan
, dma_addr_t
*dst
, dma_addr_t
*src
,
620 unsigned int src_cnt
, const unsigned char *scf
, size_t len
,
623 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
624 struct iop_adma_desc_slot
*sw_desc
, *g
;
625 int slot_cnt
, slots_per_op
;
630 BUG_ON(len
> IOP_ADMA_XOR_MAX_BYTE_COUNT
);
632 dev_dbg(iop_chan
->device
->common
.dev
,
633 "%s src_cnt: %d len: %u flags: %lx\n",
634 __func__
, src_cnt
, len
, flags
);
636 if (dmaf_p_disabled_continue(flags
))
637 continue_srcs
= 1+src_cnt
;
638 else if (dmaf_continue(flags
))
639 continue_srcs
= 3+src_cnt
;
641 continue_srcs
= 0+src_cnt
;
643 spin_lock_bh(&iop_chan
->lock
);
644 slot_cnt
= iop_chan_pq_slot_count(len
, continue_srcs
, &slots_per_op
);
645 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
649 g
= sw_desc
->group_head
;
650 iop_desc_set_byte_count(g
, iop_chan
, len
);
652 /* even if P is disabled its destination address (bits
653 * [3:0]) must match Q. It is ok if P points to an
654 * invalid address, it won't be written.
656 if (flags
& DMA_PREP_PQ_DISABLE_P
)
657 dst
[0] = dst
[1] & 0x7;
659 iop_desc_set_pq_addr(g
, dst
);
660 sw_desc
->async_tx
.flags
= flags
;
661 for (i
= 0; i
< src_cnt
; i
++)
662 iop_desc_set_pq_src_addr(g
, i
, src
[i
], scf
[i
]);
664 /* if we are continuing a previous operation factor in
665 * the old p and q values, see the comment for dma_maxpq
666 * in include/linux/dmaengine.h
668 if (dmaf_p_disabled_continue(flags
))
669 iop_desc_set_pq_src_addr(g
, i
++, dst
[1], 1);
670 else if (dmaf_continue(flags
)) {
671 iop_desc_set_pq_src_addr(g
, i
++, dst
[0], 0);
672 iop_desc_set_pq_src_addr(g
, i
++, dst
[1], 1);
673 iop_desc_set_pq_src_addr(g
, i
++, dst
[1], 0);
675 iop_desc_init_pq(g
, i
, flags
);
677 spin_unlock_bh(&iop_chan
->lock
);
679 return sw_desc
? &sw_desc
->async_tx
: NULL
;
682 static struct dma_async_tx_descriptor
*
683 iop_adma_prep_dma_pq_val(struct dma_chan
*chan
, dma_addr_t
*pq
, dma_addr_t
*src
,
684 unsigned int src_cnt
, const unsigned char *scf
,
685 size_t len
, enum sum_check_flags
*pqres
,
688 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
689 struct iop_adma_desc_slot
*sw_desc
, *g
;
690 int slot_cnt
, slots_per_op
;
694 BUG_ON(len
> IOP_ADMA_XOR_MAX_BYTE_COUNT
);
696 dev_dbg(iop_chan
->device
->common
.dev
, "%s src_cnt: %d len: %u\n",
697 __func__
, src_cnt
, len
);
699 spin_lock_bh(&iop_chan
->lock
);
700 slot_cnt
= iop_chan_pq_zero_sum_slot_count(len
, src_cnt
+ 2, &slots_per_op
);
701 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
703 /* for validate operations p and q are tagged onto the
704 * end of the source list
706 int pq_idx
= src_cnt
;
708 g
= sw_desc
->group_head
;
709 iop_desc_init_pq_zero_sum(g
, src_cnt
+2, flags
);
710 iop_desc_set_pq_zero_sum_byte_count(g
, len
);
711 g
->pq_check_result
= pqres
;
712 pr_debug("\t%s: g->pq_check_result: %p\n",
713 __func__
, g
->pq_check_result
);
714 sw_desc
->async_tx
.flags
= flags
;
716 iop_desc_set_pq_zero_sum_src_addr(g
, src_cnt
,
719 iop_desc_set_pq_zero_sum_addr(g
, pq_idx
, src
);
721 spin_unlock_bh(&iop_chan
->lock
);
723 return sw_desc
? &sw_desc
->async_tx
: NULL
;
726 static void iop_adma_free_chan_resources(struct dma_chan
*chan
)
728 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
729 struct iop_adma_desc_slot
*iter
, *_iter
;
730 int in_use_descs
= 0;
732 iop_adma_slot_cleanup(iop_chan
);
734 spin_lock_bh(&iop_chan
->lock
);
735 list_for_each_entry_safe(iter
, _iter
, &iop_chan
->chain
,
738 list_del(&iter
->chain_node
);
740 list_for_each_entry_safe_reverse(
741 iter
, _iter
, &iop_chan
->all_slots
, slot_node
) {
742 list_del(&iter
->slot_node
);
744 iop_chan
->slots_allocated
--;
746 iop_chan
->last_used
= NULL
;
748 dev_dbg(iop_chan
->device
->common
.dev
, "%s slots_allocated %d\n",
749 __func__
, iop_chan
->slots_allocated
);
750 spin_unlock_bh(&iop_chan
->lock
);
752 /* one is ok since we left it on there on purpose */
753 if (in_use_descs
> 1)
754 printk(KERN_ERR
"IOP: Freeing %d in use descriptors!\n",
759 * iop_adma_status - poll the status of an ADMA transaction
760 * @chan: ADMA channel handle
761 * @cookie: ADMA transaction identifier
762 * @txstate: a holder for the current state of the channel or NULL
764 static enum dma_status
iop_adma_status(struct dma_chan
*chan
,
766 struct dma_tx_state
*txstate
)
768 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
771 ret
= dma_cookie_status(chan
, cookie
, txstate
);
772 if (ret
== DMA_COMPLETE
)
775 iop_adma_slot_cleanup(iop_chan
);
777 return dma_cookie_status(chan
, cookie
, txstate
);
780 static irqreturn_t
iop_adma_eot_handler(int irq
, void *data
)
782 struct iop_adma_chan
*chan
= data
;
784 dev_dbg(chan
->device
->common
.dev
, "%s\n", __func__
);
786 tasklet_schedule(&chan
->irq_tasklet
);
788 iop_adma_device_clear_eot_status(chan
);
793 static irqreturn_t
iop_adma_eoc_handler(int irq
, void *data
)
795 struct iop_adma_chan
*chan
= data
;
797 dev_dbg(chan
->device
->common
.dev
, "%s\n", __func__
);
799 tasklet_schedule(&chan
->irq_tasklet
);
801 iop_adma_device_clear_eoc_status(chan
);
806 static irqreturn_t
iop_adma_err_handler(int irq
, void *data
)
808 struct iop_adma_chan
*chan
= data
;
809 unsigned long status
= iop_chan_get_status(chan
);
811 dev_err(chan
->device
->common
.dev
,
812 "error ( %s%s%s%s%s%s%s)\n",
813 iop_is_err_int_parity(status
, chan
) ? "int_parity " : "",
814 iop_is_err_mcu_abort(status
, chan
) ? "mcu_abort " : "",
815 iop_is_err_int_tabort(status
, chan
) ? "int_tabort " : "",
816 iop_is_err_int_mabort(status
, chan
) ? "int_mabort " : "",
817 iop_is_err_pci_tabort(status
, chan
) ? "pci_tabort " : "",
818 iop_is_err_pci_mabort(status
, chan
) ? "pci_mabort " : "",
819 iop_is_err_split_tx(status
, chan
) ? "split_tx " : "");
821 iop_adma_device_clear_err_status(chan
);
828 static void iop_adma_issue_pending(struct dma_chan
*chan
)
830 struct iop_adma_chan
*iop_chan
= to_iop_adma_chan(chan
);
832 if (iop_chan
->pending
) {
833 iop_chan
->pending
= 0;
834 iop_chan_append(iop_chan
);
839 * Perform a transaction to verify the HW works.
841 #define IOP_ADMA_TEST_SIZE 2000
843 static int iop_adma_memcpy_self_test(struct iop_adma_device
*device
)
847 dma_addr_t src_dma
, dest_dma
;
848 struct dma_chan
*dma_chan
;
850 struct dma_async_tx_descriptor
*tx
;
852 struct iop_adma_chan
*iop_chan
;
854 dev_dbg(device
->common
.dev
, "%s\n", __func__
);
856 src
= kmalloc(IOP_ADMA_TEST_SIZE
, GFP_KERNEL
);
859 dest
= kzalloc(IOP_ADMA_TEST_SIZE
, GFP_KERNEL
);
865 /* Fill in src buffer */
866 for (i
= 0; i
< IOP_ADMA_TEST_SIZE
; i
++)
867 ((u8
*) src
)[i
] = (u8
)i
;
869 /* Start copy, using first DMA channel */
870 dma_chan
= container_of(device
->common
.channels
.next
,
873 if (iop_adma_alloc_chan_resources(dma_chan
) < 1) {
878 dest_dma
= dma_map_single(dma_chan
->device
->dev
, dest
,
879 IOP_ADMA_TEST_SIZE
, DMA_FROM_DEVICE
);
880 src_dma
= dma_map_single(dma_chan
->device
->dev
, src
,
881 IOP_ADMA_TEST_SIZE
, DMA_TO_DEVICE
);
882 tx
= iop_adma_prep_dma_memcpy(dma_chan
, dest_dma
, src_dma
,
884 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
886 cookie
= iop_adma_tx_submit(tx
);
887 iop_adma_issue_pending(dma_chan
);
890 if (iop_adma_status(dma_chan
, cookie
, NULL
) !=
892 dev_err(dma_chan
->device
->dev
,
893 "Self-test copy timed out, disabling\n");
898 iop_chan
= to_iop_adma_chan(dma_chan
);
899 dma_sync_single_for_cpu(&iop_chan
->device
->pdev
->dev
, dest_dma
,
900 IOP_ADMA_TEST_SIZE
, DMA_FROM_DEVICE
);
901 if (memcmp(src
, dest
, IOP_ADMA_TEST_SIZE
)) {
902 dev_err(dma_chan
->device
->dev
,
903 "Self-test copy failed compare, disabling\n");
909 iop_adma_free_chan_resources(dma_chan
);
916 #define IOP_ADMA_NUM_SRC_TEST 4 /* must be <= 15 */
918 iop_adma_xor_val_self_test(struct iop_adma_device
*device
)
922 struct page
*xor_srcs
[IOP_ADMA_NUM_SRC_TEST
];
923 struct page
*zero_sum_srcs
[IOP_ADMA_NUM_SRC_TEST
+ 1];
924 dma_addr_t dma_srcs
[IOP_ADMA_NUM_SRC_TEST
+ 1];
926 struct dma_async_tx_descriptor
*tx
;
927 struct dma_chan
*dma_chan
;
933 struct iop_adma_chan
*iop_chan
;
935 dev_dbg(device
->common
.dev
, "%s\n", __func__
);
937 for (src_idx
= 0; src_idx
< IOP_ADMA_NUM_SRC_TEST
; src_idx
++) {
938 xor_srcs
[src_idx
] = alloc_page(GFP_KERNEL
);
939 if (!xor_srcs
[src_idx
]) {
941 __free_page(xor_srcs
[src_idx
]);
946 dest
= alloc_page(GFP_KERNEL
);
949 __free_page(xor_srcs
[src_idx
]);
953 /* Fill in src buffers */
954 for (src_idx
= 0; src_idx
< IOP_ADMA_NUM_SRC_TEST
; src_idx
++) {
955 u8
*ptr
= page_address(xor_srcs
[src_idx
]);
956 for (i
= 0; i
< PAGE_SIZE
; i
++)
957 ptr
[i
] = (1 << src_idx
);
960 for (src_idx
= 0; src_idx
< IOP_ADMA_NUM_SRC_TEST
; src_idx
++)
961 cmp_byte
^= (u8
) (1 << src_idx
);
963 cmp_word
= (cmp_byte
<< 24) | (cmp_byte
<< 16) |
964 (cmp_byte
<< 8) | cmp_byte
;
966 memset(page_address(dest
), 0, PAGE_SIZE
);
968 dma_chan
= container_of(device
->common
.channels
.next
,
971 if (iop_adma_alloc_chan_resources(dma_chan
) < 1) {
977 dest_dma
= dma_map_page(dma_chan
->device
->dev
, dest
, 0,
978 PAGE_SIZE
, DMA_FROM_DEVICE
);
979 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
; i
++)
980 dma_srcs
[i
] = dma_map_page(dma_chan
->device
->dev
, xor_srcs
[i
],
981 0, PAGE_SIZE
, DMA_TO_DEVICE
);
982 tx
= iop_adma_prep_dma_xor(dma_chan
, dest_dma
, dma_srcs
,
983 IOP_ADMA_NUM_SRC_TEST
, PAGE_SIZE
,
984 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
986 cookie
= iop_adma_tx_submit(tx
);
987 iop_adma_issue_pending(dma_chan
);
990 if (iop_adma_status(dma_chan
, cookie
, NULL
) !=
992 dev_err(dma_chan
->device
->dev
,
993 "Self-test xor timed out, disabling\n");
998 iop_chan
= to_iop_adma_chan(dma_chan
);
999 dma_sync_single_for_cpu(&iop_chan
->device
->pdev
->dev
, dest_dma
,
1000 PAGE_SIZE
, DMA_FROM_DEVICE
);
1001 for (i
= 0; i
< (PAGE_SIZE
/ sizeof(u32
)); i
++) {
1002 u32
*ptr
= page_address(dest
);
1003 if (ptr
[i
] != cmp_word
) {
1004 dev_err(dma_chan
->device
->dev
,
1005 "Self-test xor failed compare, disabling\n");
1007 goto free_resources
;
1010 dma_sync_single_for_device(&iop_chan
->device
->pdev
->dev
, dest_dma
,
1011 PAGE_SIZE
, DMA_TO_DEVICE
);
1013 /* skip zero sum if the capability is not present */
1014 if (!dma_has_cap(DMA_XOR_VAL
, dma_chan
->device
->cap_mask
))
1015 goto free_resources
;
1017 /* zero sum the sources with the destintation page */
1018 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
; i
++)
1019 zero_sum_srcs
[i
] = xor_srcs
[i
];
1020 zero_sum_srcs
[i
] = dest
;
1022 zero_sum_result
= 1;
1024 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
+ 1; i
++)
1025 dma_srcs
[i
] = dma_map_page(dma_chan
->device
->dev
,
1026 zero_sum_srcs
[i
], 0, PAGE_SIZE
,
1028 tx
= iop_adma_prep_dma_xor_val(dma_chan
, dma_srcs
,
1029 IOP_ADMA_NUM_SRC_TEST
+ 1, PAGE_SIZE
,
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
) != DMA_COMPLETE
) {
1038 dev_err(dma_chan
->device
->dev
,
1039 "Self-test zero sum timed out, disabling\n");
1041 goto free_resources
;
1044 if (zero_sum_result
!= 0) {
1045 dev_err(dma_chan
->device
->dev
,
1046 "Self-test zero sum failed compare, disabling\n");
1048 goto free_resources
;
1051 /* test for non-zero parity sum */
1052 zero_sum_result
= 0;
1053 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
+ 1; i
++)
1054 dma_srcs
[i
] = dma_map_page(dma_chan
->device
->dev
,
1055 zero_sum_srcs
[i
], 0, PAGE_SIZE
,
1057 tx
= iop_adma_prep_dma_xor_val(dma_chan
, dma_srcs
,
1058 IOP_ADMA_NUM_SRC_TEST
+ 1, PAGE_SIZE
,
1060 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
1062 cookie
= iop_adma_tx_submit(tx
);
1063 iop_adma_issue_pending(dma_chan
);
1066 if (iop_adma_status(dma_chan
, cookie
, NULL
) != DMA_COMPLETE
) {
1067 dev_err(dma_chan
->device
->dev
,
1068 "Self-test non-zero sum timed out, disabling\n");
1070 goto free_resources
;
1073 if (zero_sum_result
!= 1) {
1074 dev_err(dma_chan
->device
->dev
,
1075 "Self-test non-zero sum failed compare, disabling\n");
1077 goto free_resources
;
1081 iop_adma_free_chan_resources(dma_chan
);
1083 src_idx
= IOP_ADMA_NUM_SRC_TEST
;
1085 __free_page(xor_srcs
[src_idx
]);
1090 #ifdef CONFIG_RAID6_PQ
1092 iop_adma_pq_zero_sum_self_test(struct iop_adma_device
*device
)
1094 /* combined sources, software pq results, and extra hw pq results */
1095 struct page
*pq
[IOP_ADMA_NUM_SRC_TEST
+2+2];
1096 /* ptr to the extra hw pq buffers defined above */
1097 struct page
**pq_hw
= &pq
[IOP_ADMA_NUM_SRC_TEST
+2];
1098 /* address conversion buffers (dma_map / page_address) */
1099 void *pq_sw
[IOP_ADMA_NUM_SRC_TEST
+2];
1100 dma_addr_t pq_src
[IOP_ADMA_NUM_SRC_TEST
+2];
1101 dma_addr_t
*pq_dest
= &pq_src
[IOP_ADMA_NUM_SRC_TEST
];
1104 struct dma_async_tx_descriptor
*tx
;
1105 struct dma_chan
*dma_chan
;
1106 dma_cookie_t cookie
;
1107 u32 zero_sum_result
;
1111 dev_dbg(device
->common
.dev
, "%s\n", __func__
);
1113 for (i
= 0; i
< ARRAY_SIZE(pq
); i
++) {
1114 pq
[i
] = alloc_page(GFP_KERNEL
);
1122 /* Fill in src buffers */
1123 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
; i
++) {
1124 pq_sw
[i
] = page_address(pq
[i
]);
1125 memset(pq_sw
[i
], 0x11111111 * (1<<i
), PAGE_SIZE
);
1127 pq_sw
[i
] = page_address(pq
[i
]);
1128 pq_sw
[i
+1] = page_address(pq
[i
+1]);
1130 dma_chan
= container_of(device
->common
.channels
.next
,
1133 if (iop_adma_alloc_chan_resources(dma_chan
) < 1) {
1138 dev
= dma_chan
->device
->dev
;
1140 /* initialize the dests */
1141 memset(page_address(pq_hw
[0]), 0 , PAGE_SIZE
);
1142 memset(page_address(pq_hw
[1]), 0 , PAGE_SIZE
);
1145 pq_dest
[0] = dma_map_page(dev
, pq_hw
[0], 0, PAGE_SIZE
, DMA_FROM_DEVICE
);
1146 pq_dest
[1] = dma_map_page(dev
, pq_hw
[1], 0, PAGE_SIZE
, DMA_FROM_DEVICE
);
1147 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
; i
++)
1148 pq_src
[i
] = dma_map_page(dev
, pq
[i
], 0, PAGE_SIZE
,
1151 tx
= iop_adma_prep_dma_pq(dma_chan
, pq_dest
, pq_src
,
1152 IOP_ADMA_NUM_SRC_TEST
, (u8
*)raid6_gfexp
,
1154 DMA_PREP_INTERRUPT
|
1157 cookie
= iop_adma_tx_submit(tx
);
1158 iop_adma_issue_pending(dma_chan
);
1161 if (iop_adma_status(dma_chan
, cookie
, NULL
) !=
1163 dev_err(dev
, "Self-test pq timed out, disabling\n");
1165 goto free_resources
;
1168 raid6_call
.gen_syndrome(IOP_ADMA_NUM_SRC_TEST
+2, PAGE_SIZE
, pq_sw
);
1170 if (memcmp(pq_sw
[IOP_ADMA_NUM_SRC_TEST
],
1171 page_address(pq_hw
[0]), PAGE_SIZE
) != 0) {
1172 dev_err(dev
, "Self-test p failed compare, disabling\n");
1174 goto free_resources
;
1176 if (memcmp(pq_sw
[IOP_ADMA_NUM_SRC_TEST
+1],
1177 page_address(pq_hw
[1]), PAGE_SIZE
) != 0) {
1178 dev_err(dev
, "Self-test q failed compare, disabling\n");
1180 goto free_resources
;
1183 /* test correct zero sum using the software generated pq values */
1184 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
+ 2; i
++)
1185 pq_src
[i
] = dma_map_page(dev
, pq
[i
], 0, PAGE_SIZE
,
1188 zero_sum_result
= ~0;
1189 tx
= iop_adma_prep_dma_pq_val(dma_chan
, &pq_src
[IOP_ADMA_NUM_SRC_TEST
],
1190 pq_src
, IOP_ADMA_NUM_SRC_TEST
,
1191 raid6_gfexp
, PAGE_SIZE
, &zero_sum_result
,
1192 DMA_PREP_INTERRUPT
|DMA_CTRL_ACK
);
1194 cookie
= iop_adma_tx_submit(tx
);
1195 iop_adma_issue_pending(dma_chan
);
1198 if (iop_adma_status(dma_chan
, cookie
, NULL
) !=
1200 dev_err(dev
, "Self-test pq-zero-sum timed out, disabling\n");
1202 goto free_resources
;
1205 if (zero_sum_result
!= 0) {
1206 dev_err(dev
, "Self-test pq-zero-sum failed to validate: %x\n",
1209 goto free_resources
;
1212 /* test incorrect zero sum */
1213 i
= IOP_ADMA_NUM_SRC_TEST
;
1214 memset(pq_sw
[i
] + 100, 0, 100);
1215 memset(pq_sw
[i
+1] + 200, 0, 200);
1216 for (i
= 0; i
< IOP_ADMA_NUM_SRC_TEST
+ 2; i
++)
1217 pq_src
[i
] = dma_map_page(dev
, pq
[i
], 0, PAGE_SIZE
,
1220 zero_sum_result
= 0;
1221 tx
= iop_adma_prep_dma_pq_val(dma_chan
, &pq_src
[IOP_ADMA_NUM_SRC_TEST
],
1222 pq_src
, IOP_ADMA_NUM_SRC_TEST
,
1223 raid6_gfexp
, PAGE_SIZE
, &zero_sum_result
,
1224 DMA_PREP_INTERRUPT
|DMA_CTRL_ACK
);
1226 cookie
= iop_adma_tx_submit(tx
);
1227 iop_adma_issue_pending(dma_chan
);
1230 if (iop_adma_status(dma_chan
, cookie
, NULL
) !=
1232 dev_err(dev
, "Self-test !pq-zero-sum timed out, disabling\n");
1234 goto free_resources
;
1237 if (zero_sum_result
!= (SUM_CHECK_P_RESULT
| SUM_CHECK_Q_RESULT
)) {
1238 dev_err(dev
, "Self-test !pq-zero-sum failed to validate: %x\n",
1241 goto free_resources
;
1245 iop_adma_free_chan_resources(dma_chan
);
1254 static int iop_adma_remove(struct platform_device
*dev
)
1256 struct iop_adma_device
*device
= platform_get_drvdata(dev
);
1257 struct dma_chan
*chan
, *_chan
;
1258 struct iop_adma_chan
*iop_chan
;
1259 struct iop_adma_platform_data
*plat_data
= dev_get_platdata(&dev
->dev
);
1261 dma_async_device_unregister(&device
->common
);
1263 dma_free_coherent(&dev
->dev
, plat_data
->pool_size
,
1264 device
->dma_desc_pool_virt
, device
->dma_desc_pool
);
1266 list_for_each_entry_safe(chan
, _chan
, &device
->common
.channels
,
1268 iop_chan
= to_iop_adma_chan(chan
);
1269 list_del(&chan
->device_node
);
1277 static int iop_adma_probe(struct platform_device
*pdev
)
1279 struct resource
*res
;
1281 struct iop_adma_device
*adev
;
1282 struct iop_adma_chan
*iop_chan
;
1283 struct dma_device
*dma_dev
;
1284 struct iop_adma_platform_data
*plat_data
= dev_get_platdata(&pdev
->dev
);
1286 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1290 if (!devm_request_mem_region(&pdev
->dev
, res
->start
,
1291 resource_size(res
), pdev
->name
))
1294 adev
= kzalloc(sizeof(*adev
), GFP_KERNEL
);
1297 dma_dev
= &adev
->common
;
1299 /* allocate coherent memory for hardware descriptors
1300 * note: writecombine gives slightly better performance, but
1301 * requires that we explicitly flush the writes
1303 if ((adev
->dma_desc_pool_virt
= dma_alloc_writecombine(&pdev
->dev
,
1304 plat_data
->pool_size
,
1305 &adev
->dma_desc_pool
,
1306 GFP_KERNEL
)) == NULL
) {
1311 dev_dbg(&pdev
->dev
, "%s: allocated descriptor pool virt %p phys %p\n",
1312 __func__
, adev
->dma_desc_pool_virt
,
1313 (void *) adev
->dma_desc_pool
);
1315 adev
->id
= plat_data
->hw_id
;
1317 /* discover transaction capabilites from the platform data */
1318 dma_dev
->cap_mask
= plat_data
->cap_mask
;
1321 platform_set_drvdata(pdev
, adev
);
1323 INIT_LIST_HEAD(&dma_dev
->channels
);
1325 /* set base routines */
1326 dma_dev
->device_alloc_chan_resources
= iop_adma_alloc_chan_resources
;
1327 dma_dev
->device_free_chan_resources
= iop_adma_free_chan_resources
;
1328 dma_dev
->device_tx_status
= iop_adma_status
;
1329 dma_dev
->device_issue_pending
= iop_adma_issue_pending
;
1330 dma_dev
->dev
= &pdev
->dev
;
1332 /* set prep routines based on capability */
1333 if (dma_has_cap(DMA_MEMCPY
, dma_dev
->cap_mask
))
1334 dma_dev
->device_prep_dma_memcpy
= iop_adma_prep_dma_memcpy
;
1335 if (dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
)) {
1336 dma_dev
->max_xor
= iop_adma_get_max_xor();
1337 dma_dev
->device_prep_dma_xor
= iop_adma_prep_dma_xor
;
1339 if (dma_has_cap(DMA_XOR_VAL
, dma_dev
->cap_mask
))
1340 dma_dev
->device_prep_dma_xor_val
=
1341 iop_adma_prep_dma_xor_val
;
1342 if (dma_has_cap(DMA_PQ
, dma_dev
->cap_mask
)) {
1343 dma_set_maxpq(dma_dev
, iop_adma_get_max_pq(), 0);
1344 dma_dev
->device_prep_dma_pq
= iop_adma_prep_dma_pq
;
1346 if (dma_has_cap(DMA_PQ_VAL
, dma_dev
->cap_mask
))
1347 dma_dev
->device_prep_dma_pq_val
=
1348 iop_adma_prep_dma_pq_val
;
1349 if (dma_has_cap(DMA_INTERRUPT
, dma_dev
->cap_mask
))
1350 dma_dev
->device_prep_dma_interrupt
=
1351 iop_adma_prep_dma_interrupt
;
1353 iop_chan
= kzalloc(sizeof(*iop_chan
), GFP_KERNEL
);
1358 iop_chan
->device
= adev
;
1360 iop_chan
->mmr_base
= devm_ioremap(&pdev
->dev
, res
->start
,
1361 resource_size(res
));
1362 if (!iop_chan
->mmr_base
) {
1364 goto err_free_iop_chan
;
1366 tasklet_init(&iop_chan
->irq_tasklet
, iop_adma_tasklet
, (unsigned long)
1369 /* clear errors before enabling interrupts */
1370 iop_adma_device_clear_err_status(iop_chan
);
1372 for (i
= 0; i
< 3; i
++) {
1373 irq_handler_t handler
[] = { iop_adma_eot_handler
,
1374 iop_adma_eoc_handler
,
1375 iop_adma_err_handler
};
1376 int irq
= platform_get_irq(pdev
, i
);
1379 goto err_free_iop_chan
;
1381 ret
= devm_request_irq(&pdev
->dev
, irq
,
1382 handler
[i
], 0, pdev
->name
, iop_chan
);
1384 goto err_free_iop_chan
;
1388 spin_lock_init(&iop_chan
->lock
);
1389 INIT_LIST_HEAD(&iop_chan
->chain
);
1390 INIT_LIST_HEAD(&iop_chan
->all_slots
);
1391 iop_chan
->common
.device
= dma_dev
;
1392 dma_cookie_init(&iop_chan
->common
);
1393 list_add_tail(&iop_chan
->common
.device_node
, &dma_dev
->channels
);
1395 if (dma_has_cap(DMA_MEMCPY
, dma_dev
->cap_mask
)) {
1396 ret
= iop_adma_memcpy_self_test(adev
);
1397 dev_dbg(&pdev
->dev
, "memcpy self test returned %d\n", ret
);
1399 goto err_free_iop_chan
;
1402 if (dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
)) {
1403 ret
= iop_adma_xor_val_self_test(adev
);
1404 dev_dbg(&pdev
->dev
, "xor self test returned %d\n", ret
);
1406 goto err_free_iop_chan
;
1409 if (dma_has_cap(DMA_PQ
, dma_dev
->cap_mask
) &&
1410 dma_has_cap(DMA_PQ_VAL
, dma_dev
->cap_mask
)) {
1411 #ifdef CONFIG_RAID6_PQ
1412 ret
= iop_adma_pq_zero_sum_self_test(adev
);
1413 dev_dbg(&pdev
->dev
, "pq self test returned %d\n", ret
);
1415 /* can not test raid6, so do not publish capability */
1416 dma_cap_clear(DMA_PQ
, dma_dev
->cap_mask
);
1417 dma_cap_clear(DMA_PQ_VAL
, dma_dev
->cap_mask
);
1421 goto err_free_iop_chan
;
1424 dev_info(&pdev
->dev
, "Intel(R) IOP: ( %s%s%s%s%s%s)\n",
1425 dma_has_cap(DMA_PQ
, dma_dev
->cap_mask
) ? "pq " : "",
1426 dma_has_cap(DMA_PQ_VAL
, dma_dev
->cap_mask
) ? "pq_val " : "",
1427 dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
) ? "xor " : "",
1428 dma_has_cap(DMA_XOR_VAL
, dma_dev
->cap_mask
) ? "xor_val " : "",
1429 dma_has_cap(DMA_MEMCPY
, dma_dev
->cap_mask
) ? "cpy " : "",
1430 dma_has_cap(DMA_INTERRUPT
, dma_dev
->cap_mask
) ? "intr " : "");
1432 dma_async_device_register(dma_dev
);
1438 dma_free_coherent(&adev
->pdev
->dev
, plat_data
->pool_size
,
1439 adev
->dma_desc_pool_virt
, adev
->dma_desc_pool
);
1446 static void iop_chan_start_null_memcpy(struct iop_adma_chan
*iop_chan
)
1448 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
1449 dma_cookie_t cookie
;
1450 int slot_cnt
, slots_per_op
;
1452 dev_dbg(iop_chan
->device
->common
.dev
, "%s\n", __func__
);
1454 spin_lock_bh(&iop_chan
->lock
);
1455 slot_cnt
= iop_chan_memcpy_slot_count(0, &slots_per_op
);
1456 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
1458 grp_start
= sw_desc
->group_head
;
1460 list_splice_init(&sw_desc
->tx_list
, &iop_chan
->chain
);
1461 async_tx_ack(&sw_desc
->async_tx
);
1462 iop_desc_init_memcpy(grp_start
, 0);
1463 iop_desc_set_byte_count(grp_start
, iop_chan
, 0);
1464 iop_desc_set_dest_addr(grp_start
, iop_chan
, 0);
1465 iop_desc_set_memcpy_src_addr(grp_start
, 0);
1467 cookie
= dma_cookie_assign(&sw_desc
->async_tx
);
1469 /* initialize the completed cookie to be less than
1470 * the most recently used cookie
1472 iop_chan
->common
.completed_cookie
= cookie
- 1;
1474 /* channel should not be busy */
1475 BUG_ON(iop_chan_is_busy(iop_chan
));
1477 /* clear any prior error-status bits */
1478 iop_adma_device_clear_err_status(iop_chan
);
1480 /* disable operation */
1481 iop_chan_disable(iop_chan
);
1483 /* set the descriptor address */
1484 iop_chan_set_next_descriptor(iop_chan
, sw_desc
->async_tx
.phys
);
1486 /* 1/ don't add pre-chained descriptors
1487 * 2/ dummy read to flush next_desc write
1489 BUG_ON(iop_desc_get_next_desc(sw_desc
));
1491 /* run the descriptor */
1492 iop_chan_enable(iop_chan
);
1494 dev_err(iop_chan
->device
->common
.dev
,
1495 "failed to allocate null descriptor\n");
1496 spin_unlock_bh(&iop_chan
->lock
);
1499 static void iop_chan_start_null_xor(struct iop_adma_chan
*iop_chan
)
1501 struct iop_adma_desc_slot
*sw_desc
, *grp_start
;
1502 dma_cookie_t cookie
;
1503 int slot_cnt
, slots_per_op
;
1505 dev_dbg(iop_chan
->device
->common
.dev
, "%s\n", __func__
);
1507 spin_lock_bh(&iop_chan
->lock
);
1508 slot_cnt
= iop_chan_xor_slot_count(0, 2, &slots_per_op
);
1509 sw_desc
= iop_adma_alloc_slots(iop_chan
, slot_cnt
, slots_per_op
);
1511 grp_start
= sw_desc
->group_head
;
1512 list_splice_init(&sw_desc
->tx_list
, &iop_chan
->chain
);
1513 async_tx_ack(&sw_desc
->async_tx
);
1514 iop_desc_init_null_xor(grp_start
, 2, 0);
1515 iop_desc_set_byte_count(grp_start
, iop_chan
, 0);
1516 iop_desc_set_dest_addr(grp_start
, iop_chan
, 0);
1517 iop_desc_set_xor_src_addr(grp_start
, 0, 0);
1518 iop_desc_set_xor_src_addr(grp_start
, 1, 0);
1520 cookie
= dma_cookie_assign(&sw_desc
->async_tx
);
1522 /* initialize the completed cookie to be less than
1523 * the most recently used cookie
1525 iop_chan
->common
.completed_cookie
= cookie
- 1;
1527 /* channel should not be busy */
1528 BUG_ON(iop_chan_is_busy(iop_chan
));
1530 /* clear any prior error-status bits */
1531 iop_adma_device_clear_err_status(iop_chan
);
1533 /* disable operation */
1534 iop_chan_disable(iop_chan
);
1536 /* set the descriptor address */
1537 iop_chan_set_next_descriptor(iop_chan
, sw_desc
->async_tx
.phys
);
1539 /* 1/ don't add pre-chained descriptors
1540 * 2/ dummy read to flush next_desc write
1542 BUG_ON(iop_desc_get_next_desc(sw_desc
));
1544 /* run the descriptor */
1545 iop_chan_enable(iop_chan
);
1547 dev_err(iop_chan
->device
->common
.dev
,
1548 "failed to allocate null descriptor\n");
1549 spin_unlock_bh(&iop_chan
->lock
);
1552 static struct platform_driver iop_adma_driver
= {
1553 .probe
= iop_adma_probe
,
1554 .remove
= iop_adma_remove
,
1560 module_platform_driver(iop_adma_driver
);
1562 MODULE_AUTHOR("Intel Corporation");
1563 MODULE_DESCRIPTION("IOP ADMA Engine Driver");
1564 MODULE_LICENSE("GPL");
1565 MODULE_ALIAS("platform:iop-adma");